You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
532 B
22 lines
532 B
---
|
|
|
|
- name: Manage Advanced Package Manager
|
|
collections: [ 'debops.debops', 'debops.roles01',
|
|
'debops.roles02', 'debops.roles03' ]
|
|
hosts: [ 'debian10' ]
|
|
become: True
|
|
|
|
environment: '{{ inventory__environment | d({})
|
|
| combine(inventory__group_environment | d({}))
|
|
| combine(inventory__host_environment | d({})) }}'
|
|
|
|
post_tasks:
|
|
|
|
- name: Upgrade
|
|
ansible.builtin.apt:
|
|
upgrade: True
|
|
|
|
roles:
|
|
|
|
- role: apt
|
|
tags: [ 'role::apt', 'skip::apt' ]
|