diff options
author | Aaditya Dhruv <[email protected]> | 2023-09-09 18:38:10 -0500 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2023-09-09 18:39:22 -0500 |
commit | 972444dcf235cca29c4112cc35c95c5393bd1d0c (patch) | |
tree | cde29a8c17962c0de29482c7e0c8bd9222138028 /src/packages/inventory.yaml | |
parent | bd62baf6409f71ba3ceadfb92604b38f260e3374 (diff) |
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
Diffstat (limited to 'src/packages/inventory.yaml')
-rw-r--r-- | src/packages/inventory.yaml | 5 |
1 files changed, 5 insertions, 0 deletions
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 |