summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmed AbdelHalim <[email protected]>2026-07-17 15:24:30 +0200
committerAhmed AbdelHalim <[email protected]>2026-07-17 15:24:30 +0200
commit9f339c868128a99104472deaf84093ac36261a07 (patch)
treec9290e88d0c1b7e5e2d4e3a59b1255f11594f3b5
parent589c3342c471a1ef5e86055e67b47e3b1799e025 (diff)
Install wakeonlan CLI
-rw-r--r--configure.yml1
-rw-r--r--roles/wakeonlan/meta/main.yml17
-rw-r--r--roles/wakeonlan/tasks/main.yml6
3 files changed, 24 insertions, 0 deletions
diff --git a/configure.yml b/configure.yml
index be1826c6..918812a6 100644
--- a/configure.yml
+++ b/configure.yml
@@ -99,6 +99,7 @@
- role: "neomutt"
- role: "backup"
- role: "garage"
+ - role: "wakeonlan"
- name: "Proxmox VE configure"
gather_facts: true
diff --git a/roles/wakeonlan/meta/main.yml b/roles/wakeonlan/meta/main.yml
new file mode 100644
index 00000000..415adb92
--- /dev/null
+++ b/roles/wakeonlan/meta/main.yml
@@ -0,0 +1,17 @@
+---
+dependencies: []
+galaxy_info:
+ author: "a14m"
+ description: "Install wakeonlan CLI"
+ license: "MIT"
+ min_ansible_version: "2.18"
+ platforms:
+ - name: "ArchLinux"
+ versions:
+ - "all"
+ - name: "Ubuntu"
+ versions:
+ - "noble"
+ - name: "Debian"
+ versions:
+ - "bookworm"
diff --git a/roles/wakeonlan/tasks/main.yml b/roles/wakeonlan/tasks/main.yml
new file mode 100644
index 00000000..d189fc39
--- /dev/null
+++ b/roles/wakeonlan/tasks/main.yml
@@ -0,0 +1,6 @@
+---
+- name: "Install wakeonlan"
+ become: true
+ ansible.builtin.package:
+ name: "wakeonlan"
+ state: "present"