1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-14 20:22:08 +00:00

firmware/tasks/main.yml: comments/clarifs

This commit is contained in:
A Holt 2020-08-09 09:21:59 -04:00 committed by GitHub
parent 9bd5cfbc67
commit 1f3bd2d31f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +1,18 @@
- name: Include older RPi Firmware
- name: Backup/Download firmware (for RPi internal WiFi)
include_tasks: install.yml
when: rpi_firmware_downloaded is undefined
- name: Install check-firmware service files
- name: 'Install from template: check-firmware.service, check-firmware.sh & fw_warn.sh'
template:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
mode: "{{ item.mode }}"
with_items:
- { src: 'fw_warn.sh', dest: '/etc/profile.d/', mode: '0644' }
- { src: 'check-firmware.service', dest: '/etc/systemd/system/', mode: '0644' }
- { src: 'check-firmware.sh', dest: '/usr/sbin/', mode: '0755' }
- { src: 'fw_warn.sh', dest: '/etc/profile.d/', mode: '0644' }
- name: Enable and Start check-firmware.service
- name: Enable & (Re)start check-firmware.service
systemd:
name: check-firmware.service
daemon_reload: yes