1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

9 core roles check their vars + 3 roles record to iiab_state.yml

This commit is contained in:
root 2020-09-22 01:04:06 -04:00
parent 624fb68596
commit d87821d266
37 changed files with 737 additions and 416 deletions

View file

@ -18,3 +18,18 @@
daemon_reload: yes
state: restarted
enabled: yes
# RECORD firmware AS INSTALLED
- name: "Set 'firmware_installed: True'"
set_fact:
firmware_installed: True
- name: "Add 'firmware_installed: True' to {{ iiab_state_file }}"
lineinfile:
path: "{{ iiab_state_file }}" # /etc/iiab/iiab_state.yml
regexp: '^firmware_installed'
line: 'firmware_installed: True'