usercfg
parent
a4c37ed587
commit
f266ceb3d6
|
@ -28,6 +28,14 @@
|
||||||
roles:
|
roles:
|
||||||
- mounts
|
- mounts
|
||||||
|
|
||||||
|
- name: usercfg
|
||||||
|
hosts:
|
||||||
|
- suricata
|
||||||
|
become: true
|
||||||
|
roles:
|
||||||
|
- usercfg
|
||||||
|
tags: test
|
||||||
|
|
||||||
- name: pi_fan_hwpwm
|
- name: pi_fan_hwpwm
|
||||||
hosts:
|
hosts:
|
||||||
- suricata
|
- suricata
|
||||||
|
|
|
@ -40,6 +40,9 @@ all:
|
||||||
fstype: "none"
|
fstype: "none"
|
||||||
opts: "bind"
|
opts: "bind"
|
||||||
passno: "0"
|
passno: "0"
|
||||||
|
rpi_cfg:
|
||||||
|
- "enable_uart=1"
|
||||||
|
- "otg_mode=1"
|
||||||
|
|
||||||
caladan:
|
caladan:
|
||||||
ansible_host: caladan
|
ansible_host: caladan
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
- name: configure usercfg.txt
|
||||||
|
lineinfile:
|
||||||
|
path: /media/mmcblk0p1/usercfg.txt
|
||||||
|
line: "{{ item }}"
|
||||||
|
state: present
|
||||||
|
loop: "{{ rpi_cfg }}"
|
Loading…
Reference in New Issue