summaryrefslogtreecommitdiffstats
path: root/roles/stow
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2025-11-03 23:05:10 +0100
committerAhmed Abdelhalim <[email protected]>2025-11-03 23:16:51 +0100
commit20b2d74c404102740b63a0efc723f1ad60073cc9 (patch)
tree5b016dc8609d6ecca09f2f609323cb5b02811c4a /roles/stow
parent375bd8bb283cdce04cb2a65c489f0c6f46a975a9 (diff)
Add dotfiles setup role w/testing
Diffstat (limited to 'roles/stow')
-rw-r--r--roles/stow/meta/argument_specs.yml6
-rw-r--r--roles/stow/meta/main.yml18
-rw-r--r--roles/stow/tasks/main.yml6
3 files changed, 30 insertions, 0 deletions
diff --git a/roles/stow/meta/argument_specs.yml b/roles/stow/meta/argument_specs.yml
new file mode 100644
index 00000000..f28fd6a4
--- /dev/null
+++ b/roles/stow/meta/argument_specs.yml
@@ -0,0 +1,6 @@
+---
+argument_specs:
+ main:
+ short_description: "Install stow on Linux distribution"
+ description: "Install stow on Linux distribution"
+ options: {}
diff --git a/roles/stow/meta/main.yml b/roles/stow/meta/main.yml
new file mode 100644
index 00000000..b80706ce
--- /dev/null
+++ b/roles/stow/meta/main.yml
@@ -0,0 +1,18 @@
+---
+dependencies: []
+galaxy_info:
+ author: "a14m"
+ description: "Install stow"
+ company: "kartoffeln.work GmbH."
+ license: "MIT"
+ min_ansible_version: "2.18"
+ platforms:
+ - name: "ArchLinux"
+ versions:
+ - "all"
+ - name: "Ubuntu"
+ versions:
+ - "noble"
+ - name: "Debian"
+ versions:
+ - "bookworm"
diff --git a/roles/stow/tasks/main.yml b/roles/stow/tasks/main.yml
new file mode 100644
index 00000000..bbed9279
--- /dev/null
+++ b/roles/stow/tasks/main.yml
@@ -0,0 +1,6 @@
+---
+- name: "Ensure stow is installed"
+ become: true
+ ansible.builtin.package:
+ name: "stow"
+ state: "present"