bar: Set some defaults with the new raspi role

This commit is contained in:
polyfloyd 2020-05-25 14:52:06 +02:00
parent 95fa6e5972
commit f95cccdad3
3 changed files with 32 additions and 0 deletions

View file

@ -1,4 +1,7 @@
---
- hosts: bar
vars:
raspi_rotate_display: "2"
roles:
- raspi
- bank-terminal

View file

@ -0,0 +1,3 @@
---
- name: reboot
reboot:

View file

@ -0,0 +1,26 @@
---
- name: Check whether user pi exists
command: "grep ^pi: /etc/passwd"
changed_when: no
failed_when: pi_user_check.rc != 0 and pi_user_check.rc != 1
register: pi_user_check
- name: Disable default user
user:
name: pi
password: !
when: pi_user_check.stdout_lines|length > 0
- name: Enable sshd
systemd:
name: sshd
enabled: yes
state: started
- name: Rotate display
lineinfile:
path: /boot/config.txt
line: "display_rotate={{ raspi_rotate_display }} # Managed by Ansible"
regexp: "^#?display_rotate"
when: raspi_rotate_display is defined
notify: reboot