1
0
Fork 0

Add README for apt_dist_upgrade role

This commit is contained in:
Daniele Tricoli 2021-01-03 00:55:36 +01:00
parent f09044fd0f
commit 64e4cd1248
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# apt_dist_upgrade
Shows the packages to be upgraded and perform a dist upgrade.
## Role variables
* `apt_dist_upgrade_become` - Default: true. Enable/disable the Ansible become
functionality.
* `apt_dist_upgrade_become_user` - Default: root. When using become functionality for
privilege escalation, this is the user with desired privileges you become.
## Example playbook
```yaml
- hosts: my-server
roles:
- eriol.kit.apt_dist_upgrade
```