diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-07-17 15:24:30 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-07-17 15:24:30 +0200 |
| commit | 92ba528a34337b59408e41b124aafc8946439feb (patch) | |
| tree | c9290e88d0c1b7e5e2d4e3a59b1255f11594f3b5 /roles/wakeonlan/tasks | |
| parent | ba2c0c42790fd29aec61dd2d9bfa2b166d2acdd7 (diff) | |
Install wakeonlan CLI
Diffstat (limited to 'roles/wakeonlan/tasks')
| -rw-r--r-- | roles/wakeonlan/tasks/main.yml | 6 |
1 files changed, 6 insertions, 0 deletions
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" |
