forked from bitlair/ansible
bar: Set some defaults with the new raspi role
This commit is contained in:
parent
95fa6e5972
commit
f95cccdad3
3 changed files with 32 additions and 0 deletions
3
bar.yaml
3
bar.yaml
|
@ -1,4 +1,7 @@
|
|||
---
|
||||
- hosts: bar
|
||||
vars:
|
||||
raspi_rotate_display: "2"
|
||||
roles:
|
||||
- raspi
|
||||
- bank-terminal
|
||||
|
|
3
roles/raspi/handlers/main.yaml
Normal file
3
roles/raspi/handlers/main.yaml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
- name: reboot
|
||||
reboot:
|
26
roles/raspi/tasks/main.yaml
Normal file
26
roles/raspi/tasks/main.yaml
Normal 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
|
Loading…
Add table
Reference in a new issue