From 75247bfd227fbc2be52f2c32146178552809c1b8 Mon Sep 17 00:00:00 2001 From: Tobias Petrich Date: Sat, 25 Jan 2025 11:31:00 +0100 Subject: [PATCH] add lynis to common programs --- ansible/common_programs.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ansible/common_programs.yml b/ansible/common_programs.yml index dde4dd7..f301c37 100644 --- a/ansible/common_programs.yml +++ b/ansible/common_programs.yml @@ -3,9 +3,12 @@ hosts: all become: yes tasks: - - name: install borgbackup, tmux with zypper and transactional-update + - name: install common programs with zypper and transactional-update community.general.zypper: - name: "borgbackup tmux" + pkg: + - borgbackup + - tmux + - lynis state: present register: zypper_result - name: reboot if borgbackup or tmux was installed