From 972444dcf235cca29c4112cc35c95c5393bd1d0c Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Sat, 9 Sep 2023 18:38:10 -0500 Subject: Add packages directory for package management The install playbook here will manage installing packages as per the groups in packages.yaml. It also needs to handle non-dnf packages such as rust, pip etc. which will be done later --- src/packages/inventory.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/packages/inventory.yaml (limited to 'src/packages/inventory.yaml') diff --git a/src/packages/inventory.yaml b/src/packages/inventory.yaml new file mode 100644 index 0000000..4e58fb5 --- /dev/null +++ b/src/packages/inventory.yaml @@ -0,0 +1,5 @@ +cluster: + hosts: + localhost: + vars: + ansible_connection: local -- cgit