diff options
Diffstat (limited to 'roles/apt')
-rw-r--r-- | roles/apt/handlers/main.yml | 8 | ||||
-rw-r--r-- | roles/apt/tasks/main.yml | 23 |
2 files changed, 31 insertions, 0 deletions
diff --git a/roles/apt/handlers/main.yml b/roles/apt/handlers/main.yml new file mode 100644 index 0000000..9dd7b9f --- /dev/null +++ b/roles/apt/handlers/main.yml @@ -0,0 +1,8 @@ +- name: Reboot + reboot: + when: 'ansible_env["SSH_CLIENT"].split()[0] not in ansible_all_ipv4_addresses' + +- name: Wait for connectivity + # One of the nodes is the VPN server connecting all the other nodes, wait + # until all of them are back up: + wait_for_connection: 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 |