4a352fc24db60c1c18a83cf2f268fe261e25fb3e
[lttng-ci.git] / automation / ansible / playbooks / post-imagebuild-clean.yml
1 ---
2 - hosts: all
3 tasks:
4 - when: ansible_os_family == 'Debian'
5 ansible.builtin.command:
6 argv: ['apt-get', 'clean']
7 - when: ansible_os_family == 'Suse'
8 ansible.builtin.command:
9 argv: ['zypper', 'clean']
10 - when: ansible_distribution == 'SLES'
11 block:
12 - ansible.builtin.command:
13 argv: ['SUSEConnect', '-d']
14 - ansible.builtin.command:
15 argv: ['SUSEConnect', '--cleanup']
16 - ansible.builtin.command:
17 argv: ['cloud-init', 'clean']
18 ignore_errors: true
19 - ansible.builtin.shell:
20 cmd: 'history -cw'
21 # Some default shells don't have the `history` built-in,
22 # and it's not blocking that this works or not.
23 ignore_errors: true
24 - ansible.builtin.file:
25 path: /root/.ssh/authorized_keys2
26 state: absent
This page took 0.029693 seconds and 3 git commands to generate.