mirror of
https://git.libreschool.org/paspo/brasatore.git
synced 2024-11-21 21:58:44 +00:00
26 lines
435 B
YAML
26 lines
435 B
YAML
---
|
|
|
|
- name: ISO script
|
|
template:
|
|
src: iso/mount-all.sh
|
|
dest: /srv/pxe/mount/mount-all.sh
|
|
owner: root
|
|
group: root
|
|
mode: "0755"
|
|
become: true
|
|
|
|
- name: ISO service
|
|
template:
|
|
src: iso/mount-isos.service
|
|
dest: /etc/systemd/system/mount-isos.service
|
|
owner: root
|
|
group: root
|
|
mode: "0644"
|
|
become: true
|
|
|
|
- name: ISO Enable service
|
|
service:
|
|
name: mount-isos
|
|
enabled: yes
|
|
become: true
|