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 | cbfac01feb3db727f7539dee124673f3322b38d7 (patch) | |
| tree | 4b8d25dabd9827a70cff32f20d7875d2024ba113 /roles/chromium | |
| parent | 371dd3a37465efb68df9a978253894c664da688b (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" |
