1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 03:32:12 +00:00

Merge pull request #38 from iiab/master

sync from iiab/iiab
This commit is contained in:
A Holt 2017-11-27 12:36:43 -05:00 committed by GitHub
commit ccf47b3e8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 55 additions and 4 deletions

View file

@ -0,0 +1,26 @@
- name: Does systemd startup service exist
stat: path="{{ systemd_location }}/iiab-startup.service"
register: startup_unit
- name: Copy startup service to /etc/systemd/system
template: src=iiab-startup.service
dest=/etc/systemd/system/
when: startup_unit.stat.exists is defined and not startup_unit.stat.exists
- name: Copy startup script
template: src=iiab-startup.sh
dest=/usr/libexec/
mode=0755
when: startup_unit.stat.exists is defined and not startup_unit.stat.exists
- name: Ask systemd to recognize the changes
shell: systemctl daemon-reload
when: startup_unit.stat.exists is defined and not startup_unit.stat.exists
- name: Restart so systemd recognizes the changes
shell: systemctl restart iiab-startup.service
when: startup_unit.stat.exists is defined and not startup_unit.stat.exists
- name: Enable the reload service
shell: systemctl enable iiab-startup.service
when: startup_unit.stat.exists is defined and not startup_unit.stat.exists

View file

@ -44,6 +44,8 @@
- include_tasks: udev.yml
- include_tasks: iiab-startup.yml
- name: Recording STAGE 2 HAS COMPLETED ==========================
lineinfile: dest=/etc/iiab/iiab.env
regexp='^STAGE=*'

View file

@ -0,0 +1,10 @@
[Unit]
Description=Execute startup script
After=network-online.target
[Service]
Type=oneshot
ExecStart=/usr/libexec/iiab-startup.sh
[Install]
WantedBy=multi-user.target

View file

@ -0,0 +1,8 @@
#!/bin/bash
# put initialization that needs to happen at every startup for IIAB here
if [ ! -f /etc/iiab/uuid ]; then
uuidgen > /etc/iiab/uuid
fi
exit 0

View file

@ -8,7 +8,7 @@
- name: Create a config template for hostapd
template: src=hostapd/iiab-hostapd.conf.j2
dest=/etc/hostapd/hostapd.conf.template
dest=/etc/hostapd/hostapd.conf.iiab
owner=root
group=root
mode=0644

View file

@ -8,13 +8,13 @@
- network
- network-discover
- name: RPi hack for AP post install via wifi so the services are right
- name: RPi - reboot to AP post install - installed via wifi so the services are ready
set_fact:
iiab_lan_iface: br0
iiab_wan_iface: "{{ discovered_wired_iface }}"
iiab_wireless_lan_iface: "{{ discovered_wireless_iface }}"
iiab_wired_lan_iface: ""
when: is_rpi and discovered_wireless_iface is defined and discovered_wireless_iface == iiab_wan_iface
when: is_rpi and discovered_wireless_iface is defined and discovered_wireless_iface == iiab_wan_iface and reboot_to_AP is defined
- include_tasks: computed_network.yml
when: not installing
@ -27,7 +27,7 @@
- network
- AP
- name: RPi hack for AP post install via wifi don't blow away current network
- name: RPi reboot to AP post install - installed via wifi - don't blow away current network
set_fact:
no_net_restart: True
hostapd_enabled: False

View file

@ -2,6 +2,8 @@
sed -i -e "s/^denyinterfaces*/#denyinterfaces/" /etc/dhcpcd.conf
systemctl disable hostapd
systemctl stop hostapd
systemctl disable dhcpd
systemctl stop dhcpd
systemctl daemon-reload
systemctl restart dhcpcd
systemctl restart networking

View file

@ -1,7 +1,10 @@
#!/bin/bash
cp -f /etc/hostapd/hostapd.conf.iiab /etc/hostapd/hostapd.conf
sed -i -e "s/#denyinterfaces*/denyinterfaces/" /etc/dhcpcd.conf
systemctl enable hostapd
systemctl enable dhcpd
systemctl daemon-reload
systemctl restart dhcpcd
systemctl restart networking
systemctl start hostapd
systemctl start dhcpd