diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-02-06 23:16:06 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-02-06 23:16:06 +0100 |
| commit | 512e8239c29c3879d80fb218ed62d33c4990a2e6 (patch) | |
| tree | 4b8d25dabd9827a70cff32f20d7875d2024ba113 /roles/chromium | |
| parent | b869f1a55f431ffdaaa49b3ec789c533881f3a0a (diff) | |
Add chromium role
Diffstat (limited to 'roles/chromium')
| -rw-r--r-- | roles/chromium/meta/argument_specs.yml | 6 | ||||
| -rw-r--r-- | roles/chromium/meta/main.yml | 17 | ||||
| -rw-r--r-- | roles/chromium/tasks/main.yml | 6 |
3 files changed, 29 insertions, 0 deletions
diff --git a/roles/chromium/meta/argument_specs.yml b/roles/chromium/meta/argument_specs.yml new file mode 100644 index 00000000..bb529de3 --- /dev/null +++ b/roles/chromium/meta/argument_specs.yml @@ -0,0 +1,6 @@ +--- +argument_specs: + main: + short_description: "Install chromium on ArchLinux" + description: "Install chromium on ArchLinux" + options: {} diff --git a/roles/chromium/meta/main.yml b/roles/chromium/meta/main.yml new file mode 100644 index 00000000..2a02d9df --- /dev/null +++ b/roles/chromium/meta/main.yml @@ -0,0 +1,17 @@ +--- +dependencies: [] +galaxy_info: + author: "a14m" + description: "Install chromium" + license: "MIT" + min_ansible_version: "2.18" + platforms: + - name: "ArchLinux" + versions: + - "all" + - name: "Ubuntu" + versions: + - "noble" + - name: "Debian" + versions: + - "bookworm" diff --git a/roles/chromium/tasks/main.yml b/roles/chromium/tasks/main.yml new file mode 100644 index 00000000..5654fbb1 --- /dev/null +++ b/roles/chromium/tasks/main.yml @@ -0,0 +1,6 @@ +--- +- name: "Ensure chromium is installed" + become: true + ansible.builtin.package: + name: "chromium" + state: "present" |
