Kapisi/roles/Geth-Hub/tasks/main.yml

133 lines
3.1 KiB
YAML
Raw Normal View History

2021-12-19 21:32:19 -06:00
---
2022-01-25 23:54:43 -06:00
2021-12-19 21:32:19 -06:00
- name: Geth-Hub packages
become: yes
package:
name:
- motion
- lirc
2022-01-25 23:54:43 -06:00
- libcamera-apps
- ir-keytable
2021-12-19 21:32:19 -06:00
state: present
2022-01-25 23:54:43 -06:00
update_cache: yes
2021-12-19 21:32:19 -06:00
- name: Copy the SSH key
authorized_key:
2022-01-25 23:54:43 -06:00
user: "{{ ansible_user_id }}"
2021-12-19 21:32:19 -06:00
state: present
key: "{{ lookup('file', lookup('env','HOME') + '/.ssh/geth.pub') }}"
- name: Copy the motion config
become: yes
register: motion_config
template:
src: "motion.conf.j2"
2021-12-19 21:32:19 -06:00
dest: "/etc/motion/motion.conf"
2022-01-25 23:54:43 -06:00
- name: Create motion log folder
become: yes
file:
path: "{{ item }}"
state: directory
owner: motion
group: motion
mode: 0750
loop:
- "/var/log/motion"
- "/var/run/motion"
2021-12-19 21:32:19 -06:00
- name: Restart the motion service
become: yes
2022-01-25 23:54:43 -06:00
when: motion_config.changed and motion_enabled
2021-12-19 21:32:19 -06:00
service:
name: motion
state: started
2021-12-19 21:32:19 -06:00
enabled: yes
2022-01-25 23:54:43 -06:00
- name: Allow override of motion service
become: yes
when: not motion_enabled
service:
name: motion
state: stopped
enabled: no
2021-12-19 21:32:19 -06:00
# Thanks to https://wiki.geekworm.com/Raspberry_Pi_IR_Control_Expansion_Board for instructions setting up lirc
- name: Set the dtoverlay
become: yes
2022-01-25 23:54:43 -06:00
register: dtoverlay
blockinfile:
2021-12-19 21:32:19 -06:00
path: "/boot/config.txt"
2022-01-25 23:54:43 -06:00
insertafter: EOF
marker: "# {mark} Ubiqtorate Managed Block"
block: |
dtoverlay=gpio-ir,gpio_pin={{ gpio_in_pin | default('18') }}
dtoverlay=gpio-ir-tx,gpio_pin={{ gpio_out_pin | default('17') }}
start_x=1
- name: Unset camera autodetect
become: yes
register: camera_autodetect
lineinfile:
path: "/boot/config.txt"
regexp: "camera_auto_detect"
line: "# camera_auto_detect=1"
2021-12-19 21:32:19 -06:00
- name: Set the dtparam
become: yes
2022-01-25 23:54:43 -06:00
register: dtparam
2021-12-19 21:32:19 -06:00
lineinfile:
path: "/boot/config.txt"
regexp: "^dtparam="
line: "dtparam=gpio_in_pull={{ gpio_in_pull | default('down') }}"
- name: Copy the modules config
become: yes
2022-01-25 23:54:43 -06:00
register: modules_config
2021-12-19 21:32:19 -06:00
template:
src: "modules.j2"
dest: "/etc/modules"
2022-01-25 23:54:43 -06:00
- name: Copy the modules config, part 2
become: yes
register: modules_config_2
template:
src: "lirc_rpi.conf.j2"
dest: "/etc/modprobe.d/lirc_rpi.conf"
- name: Reboot if needed
become: yes
when: modules_config.changed or dtparam.changed or dtoverlay.changed or modules_config_2.changed or camera_autodetect.changed
2022-01-25 23:54:43 -06:00
reboot:
- name: Wait if needed
become: yes
when: modules_config.changed or dtparam.changed or dtoverlay.changed or modules_config_2.changed
wait_for_connection:
2021-12-19 21:32:19 -06:00
- name: Copy lircd supplemental config
register: lircd_supp_config
become: yes
copy:
src: "{{ item }}"
dest: "/etc/lirc/{{ item }}"
loop:
- hardware.conf
- lirc_options.conf
2021-12-19 21:32:19 -06:00
- name: Copy lircd remote config
register: lircd_remote_config
become: yes
copy:
2022-01-25 23:54:43 -06:00
src: "lircd.conf/{{ inventory_hostname }}"
dest: /etc/lirc/lircd.conf
2021-12-19 21:32:19 -06:00
- name: Start the services
when: lircd_supp_config.changed or lircd_remote_config.changed
become: yes
service:
2022-01-25 23:54:43 -06:00
name: lircd
2021-12-19 21:32:19 -06:00
state: restarted
enabled: yes