d4eb23ddfb4457c8fdb9db6378d7278946b24288
[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 - ansible.builtin.file:
22 path: /root/.ssh/authorized_keys2
23 state: absent
This page took 0.030338 seconds and 3 git commands to generate.