18 lines
446 B
YAML
18 lines
446 B
YAML
---
|
|
- name: install commonly used programs
|
|
hosts: all
|
|
become: yes
|
|
tasks:
|
|
- name: install common programs with zypper and transactional-update
|
|
community.general.zypper:
|
|
pkg:
|
|
- borgbackup
|
|
- tmux
|
|
- lynis
|
|
- toolbox
|
|
state: present
|
|
register: zypper_result
|
|
- name: reboot if software needed to be installed
|
|
ansible.builtin.reboot:
|
|
when: zypper_result.changed
|