Moved scripts out of the way
This commit is contained in:
parent
b13997ec9b
commit
19a02722c5
6 changed files with 22 additions and 0 deletions
10
reboot.yml
Normal file
10
reboot.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
---
|
||||||
|
- name: Reboot machines
|
||||||
|
gather_facts: false
|
||||||
|
become: yes
|
||||||
|
hosts: all
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
|
||||||
|
- name: Reboot machine
|
||||||
|
ansible.builtin.reboot:
|
|
@ -58,6 +58,7 @@
|
||||||
- handbrake
|
- handbrake
|
||||||
- slic3r-prusa
|
- slic3r-prusa
|
||||||
- filius
|
- filius
|
||||||
|
- wine
|
||||||
autoremove: true
|
autoremove: true
|
||||||
state: latest
|
state: latest
|
||||||
environment:
|
environment:
|
||||||
|
|
11
wakeonlan.yml
Normal file
11
wakeonlan.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
- name: Wake machines via WOL
|
||||||
|
gather_facts: false
|
||||||
|
hosts: all
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
|
||||||
|
- name: Wake machine
|
||||||
|
community.general.wakeonlan:
|
||||||
|
mac: "{{ mac }}"
|
||||||
|
delegate_to: localhost
|
Loading…
Add table
Add a link
Reference in a new issue