diff options
| author | Ahmed AbdelHalim <[email protected]> | 2025-12-22 17:25:45 +0100 |
|---|---|---|
| committer | Ahmed AbdelHalim <[email protected]> | 2025-12-22 17:25:45 +0100 |
| commit | e2c1a1b1800cee42eef57647ed206de8c6d39014 (patch) | |
| tree | 34813bd8e1f978211241c6e9be7fb45d0759a973 /roles | |
| parent | 3eab21abe31c41c22230bc7c2ccb76d58582eab3 (diff) | |
Add man pages role and explicitly install bash on machines
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/man/meta/argument_specs.yml | 6 | ||||
| -rw-r--r-- | roles/man/meta/main.yml | 17 | ||||
| -rw-r--r-- | roles/man/tasks/main.yml | 6 |
3 files changed, 29 insertions, 0 deletions
diff --git a/roles/man/meta/argument_specs.yml b/roles/man/meta/argument_specs.yml new file mode 100644 index 00000000..e9dc90b3 --- /dev/null +++ b/roles/man/meta/argument_specs.yml @@ -0,0 +1,6 @@ +--- +argument_specs: + main: + short_description: "Install man on Linux distribution" + description: "Install manual pages on Linux distribution" + options: {} diff --git a/roles/man/meta/main.yml b/roles/man/meta/main.yml new file mode 100644 index 00000000..b7fbb4a7 --- /dev/null +++ b/roles/man/meta/main.yml @@ -0,0 +1,17 @@ +--- +dependencies: [] +galaxy_info: + author: "a14m" + description: "Install man" + license: "MIT" + min_ansible_version: "2.18" + platforms: + - name: "ArchLinux" + versions: + - "all" + - name: "Ubuntu" + versions: + - "noble" + - name: "Debian" + versions: + - "bookworm" diff --git a/roles/man/tasks/main.yml b/roles/man/tasks/main.yml new file mode 100644 index 00000000..6b0a1af4 --- /dev/null +++ b/roles/man/tasks/main.yml @@ -0,0 +1,6 @@ +--- +- name: "Ensure man is installed" + become: true + ansible.builtin.package: + name: "man-db" + state: "present" |
