diff options
| author | alex <alex@pdp7.net> | 2026-01-05 14:05:56 +0100 |
|---|---|---|
| committer | alex <alex@pdp7.net> | 2026-01-05 14:05:56 +0100 |
| commit | 34f292e3c91c2de9e63518940e120c322294778f (patch) | |
| tree | 05e0566288d18773cade4fc8c0357e61f69b4fda | |
| parent | 23534564dccc97b032c3d043849453072875128f (diff) | |
Add basic software
| -rw-r--r-- | infrastructure/roles/basic_software/tasks/main.yaml | 6 | ||||
| -rw-r--r-- | infrastructure/site.yaml | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/infrastructure/roles/basic_software/tasks/main.yaml b/infrastructure/roles/basic_software/tasks/main.yaml new file mode 100644 index 0000000..427246c --- /dev/null +++ b/infrastructure/roles/basic_software/tasks/main.yaml @@ -0,0 +1,6 @@ +- name: install basic software + ansible.builtin.package: + name: + - man-db + - bash-completion + diff --git a/infrastructure/site.yaml b/infrastructure/site.yaml index c0f9ef1..ce7a291 100644 --- a/infrastructure/site.yaml +++ b/infrastructure/site.yaml @@ -14,3 +14,4 @@ - git - podman - vaultwarden + - basic_software |
