diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-08-05 16:09:45 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-08-09 09:57:54 +0300 |
commit | e1fb7bf6dbc9249c62b0e1255bf83b3c0df35378 (patch) | |
tree | 305f631ea6163e74811fc8c50808c481af3e4619 /roles/apt/tasks | |
download | maintenance-e1fb7bf6dbc9249c62b0e1255bf83b3c0df35378.tar.gz maintenance-e1fb7bf6dbc9249c62b0e1255bf83b3c0df35378.zip |
initial commit
Diffstat (limited to '')
-rw-r--r-- | roles/apt/tasks/main.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/roles/apt/tasks/main.yml b/roles/apt/tasks/main.yml new file mode 100644 index 0000000..dd56a43 --- /dev/null +++ b/roles/apt/tasks/main.yml @@ -0,0 +1,23 @@ +- name: Find apt + command: apt-get --version + register: apt_version + changed_when: no + ignore_errors: yes + +- when: apt_version.rc == 0 + become: yes + block: + - name: Upgrade packages + apt: + upgrade: full + notify: + - Reboot + - Wait for connectivity + + - name: Clean up dependencies + apt: + autoremove: yes + purge: yes + notify: + - Reboot + - Wait for connectivity |