From 3b50f23e74bc1d6d93114c3263a4450c9e9d28fb Mon Sep 17 00:00:00 2001 From: oscarpocock Date: Sun, 22 May 2022 18:46:20 +0100 Subject: [PATCH] Added htop installation task --- local.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 local.yml diff --git a/local.yml b/local.yml new file mode 100644 index 0000000..317b2db --- /dev/null +++ b/local.yml @@ -0,0 +1,7 @@ +- hosts: localhost + become: true + tasks: + - name: Install htop + community.general.pacman: + name: htop + state: present