mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 19:52:06 +00:00
Merge pull request #675 from holta/1-prep
1-prep: raspberry_pi_2.yml -> raspberry_pi.yml; indentation/syntax per new Ansible docs
This commit is contained in:
commit
a8eb07efef
3 changed files with 67 additions and 62 deletions
|
@ -3,7 +3,7 @@
|
||||||
- name: ...IS BEGINNING ============================================
|
- name: ...IS BEGINNING ============================================
|
||||||
command: echo
|
command: echo
|
||||||
|
|
||||||
- name: Get the uuidgen program
|
- name: Install uuidgen program (debuntu)
|
||||||
package:
|
package:
|
||||||
name: uuid-runtime
|
name: uuid-runtime
|
||||||
state: present
|
state: present
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
dest: /etc/chrony.conf
|
dest: /etc/chrony.conf
|
||||||
src: chrony.conf.j2
|
src: chrony.conf.j2
|
||||||
|
|
||||||
- name: Disable AppArmor -- on by default in Ubuntu
|
- name: Disable AppArmor -- override OS default (ubuntu)
|
||||||
service:
|
service:
|
||||||
name: apparmor
|
name: apparmor
|
||||||
enabled: False
|
enabled: False
|
||||||
|
@ -62,19 +62,19 @@
|
||||||
when: is_ubuntu
|
when: is_ubuntu
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
|
|
||||||
- name: Disable SELinux on next boot
|
- name: Disable SELinux on next boot (OS's other than debuntu)
|
||||||
selinux:
|
selinux:
|
||||||
state: disabled
|
state: disabled
|
||||||
register: selinux_disabled
|
register: selinux_disabled
|
||||||
when: not is_debuntu
|
when: not is_debuntu
|
||||||
|
|
||||||
- name: Disable SELinux for this session (if needed)
|
- name: Disable SELinux for this session (OS's other than debuntu, if needed)
|
||||||
command: setenforce Permissive
|
command: setenforce Permissive
|
||||||
when: not is_debuntu and selinux_disabled is defined and selinux_disabled.changed
|
when: not is_debuntu and selinux_disabled is defined and selinux_disabled.changed
|
||||||
|
|
||||||
## DISCOVER PLATFORMS ######
|
## DISCOVER PLATFORMS ######
|
||||||
# Put conditional actions for hardware platforms here
|
# Put conditional actions for hardware platforms here
|
||||||
- include_tasks: raspberry_pi_2.yml
|
- include_tasks: raspberry_pi.yml
|
||||||
when: first_run and rpi_model != "none"
|
when: first_run and rpi_model != "none"
|
||||||
|
|
||||||
- name: Check if the identifier for Intel's NUC6 builtin WiFi is present
|
- name: Check if the identifier for Intel's NUC6 builtin WiFi is present
|
||||||
|
|
62
roles/1-prep/tasks/raspberry_pi.yml
Normal file
62
roles/1-prep/tasks/raspberry_pi.yml
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
# Setup specific to the Raspberry Pi
|
||||||
|
|
||||||
|
- name: Add a udev rule to transfer hwclock to system clock at dev creation
|
||||||
|
template:
|
||||||
|
src: 92-rtc-i2c.rules
|
||||||
|
dest: /etc/udev/rules.d/92-rtc-i2c.rules
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: 0644
|
||||||
|
when: rtc_id is defined and rtc_id != "none"
|
||||||
|
|
||||||
|
# RTC requires a change to the device tree (and reboot)
|
||||||
|
- name: Check for needing to enable i2c rtc device in config.txt
|
||||||
|
lineinfile:
|
||||||
|
dest: /boot/config.txt
|
||||||
|
line: "dtoverlay=i2c-rtc,{{ rtc_id }}=on"
|
||||||
|
state: present
|
||||||
|
register: rpiconfig
|
||||||
|
when: rtc_id != "none"
|
||||||
|
|
||||||
|
- name: Add a udev rule to transfer hwclock to system clock at dev creation
|
||||||
|
template:
|
||||||
|
src: 92-rtc-i2c.rules
|
||||||
|
dest: /etc/udev/rules.d/92-rtc-i2c.rules
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: 0644
|
||||||
|
when: rtc_id != "none"
|
||||||
|
|
||||||
|
- name: Pre-install packages
|
||||||
|
package:
|
||||||
|
name: "{{ item }}"
|
||||||
|
state: latest
|
||||||
|
with_items:
|
||||||
|
- ntp
|
||||||
|
|
||||||
|
- name: Increase the swap file size, as kalite pip download fails (debuntu)
|
||||||
|
lineinfile:
|
||||||
|
regexp: "^CONF_SWAPSIZE"
|
||||||
|
line: CONF_SWAPSIZE=500
|
||||||
|
dest: /etc/dphys-swapfile
|
||||||
|
when: is_debuntu
|
||||||
|
|
||||||
|
- name: Restart the swap service (debuntu)
|
||||||
|
command: /etc/init.d/dphys-swapfile restart
|
||||||
|
when: is_debuntu
|
||||||
|
|
||||||
|
- name: Add RPi rootfs resizing service
|
||||||
|
template:
|
||||||
|
src: "{{ item.src }}"
|
||||||
|
dest: "{{ item.dest }}"
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: "{{ item.mode }}"
|
||||||
|
with_items:
|
||||||
|
- { src: 'iiab-rpi-max-rootfs.sh', dest: '/usr/sbin/iiab-rpi-max-rootfs.sh', mode: '0755'}
|
||||||
|
- { src: 'iiab-rpi-root-resize.service', dest: '/etc/systemd/system/iiab-rpi-root-resize.service', mode: '0644'}
|
||||||
|
|
||||||
|
- name: Enable rootfs resizing service
|
||||||
|
service:
|
||||||
|
name: iiab-rpi-root-resize
|
||||||
|
enabled: yes
|
|
@ -1,57 +0,0 @@
|
||||||
# Setup specific to the Raspberry Pi
|
|
||||||
#
|
|
||||||
- name: Add a udev rule to transfer hwclock to system clock at dev creation
|
|
||||||
template: src=92-rtc-i2c.rules
|
|
||||||
dest=/etc/udev/rules.d/92-rtc-i2c.rules
|
|
||||||
owner=root
|
|
||||||
group=root
|
|
||||||
mode=0644
|
|
||||||
when: rtc_id is defined and rtc_id != "none"
|
|
||||||
|
|
||||||
#
|
|
||||||
# RTC requires a change to the device tree (and reboot)
|
|
||||||
- name: Check for needing to enable i2c rtc device in config.txt
|
|
||||||
lineinfile: dest=/boot/config.txt
|
|
||||||
line="dtoverlay=i2c-rtc,{{ rtc_id }}=on"
|
|
||||||
state=present
|
|
||||||
register: rpiconfig
|
|
||||||
when: rtc_id != "none"
|
|
||||||
|
|
||||||
|
|
||||||
- name: Add a udev rule to transfer hwclock to system clock at dev creation
|
|
||||||
template: src=92-rtc-i2c.rules
|
|
||||||
dest=/etc/udev/rules.d/92-rtc-i2c.rules
|
|
||||||
owner=root
|
|
||||||
group=root
|
|
||||||
mode=0644
|
|
||||||
when: rtc_id != "none"
|
|
||||||
|
|
||||||
- name: Pre-install packages
|
|
||||||
package: name={{ item }}
|
|
||||||
state=latest
|
|
||||||
with_items:
|
|
||||||
- ntp
|
|
||||||
|
|
||||||
- name: Increase the swap file size (kalite pip download fails)
|
|
||||||
lineinfile: regexp="^CONF_SWAPSIZE"
|
|
||||||
line=CONF_SWAPSIZE=500
|
|
||||||
dest=/etc/dphys-swapfile
|
|
||||||
when: is_debuntu
|
|
||||||
|
|
||||||
- name: Restart the swap service
|
|
||||||
command: /etc/init.d/dphys-swapfile restart
|
|
||||||
when: is_debuntu
|
|
||||||
|
|
||||||
- name: Add RPi rootfs resizing service
|
|
||||||
template: src={{ item.src }}
|
|
||||||
dest={{ item.dest }}
|
|
||||||
owner=root
|
|
||||||
group=root
|
|
||||||
mode={{ item.mode }}
|
|
||||||
with_items:
|
|
||||||
- { src: 'iiab-rpi-max-rootfs.sh', dest: '/usr/sbin/iiab-rpi-max-rootfs.sh', mode: '0755'}
|
|
||||||
- { src: 'iiab-rpi-root-resize.service', dest: '/etc/systemd/system/iiab-rpi-root-resize.service', mode: '0644'}
|
|
||||||
|
|
||||||
- name: Enable rootfs resizing service
|
|
||||||
service: name=iiab-rpi-root-resize
|
|
||||||
enabled=yes
|
|
Loading…
Reference in a new issue