1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Clarify output of roles/network/tasks/hostapd.yml

This commit is contained in:
A Holt 2017-12-28 17:13:22 -05:00 committed by GitHub
parent 8e17a4bc53
commit cbc8ec3f44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
- name: Create a config file for hostapd - name: Create /etc/hostapd/hostapd.conf from template
template: src=hostapd/hostapd.conf.j2 template: src=hostapd/hostapd.conf.j2
dest=/etc/hostapd/hostapd.conf dest=/etc/hostapd/hostapd.conf
owner=root owner=root
@ -6,7 +6,7 @@
mode=0644 mode=0644
when: iiab_wireless_lan_iface is defined when: iiab_wireless_lan_iface is defined
- name: Create a config template for hostapd - name: Create /etc/hostapd/hostapd.conf.iiab from template
template: src=hostapd/iiab-hostapd.conf.j2 template: src=hostapd/iiab-hostapd.conf.j2
dest=/etc/hostapd/hostapd.conf.iiab dest=/etc/hostapd/hostapd.conf.iiab
owner=root owner=root
@ -27,14 +27,14 @@
mode=0644 mode=0644
when: hostapd_enabled when: hostapd_enabled
- name: Use custom iiab-hotspot-on - name: Create /usr/bin/iiab-hotspot-on from template
template: src=network/iiab-hotspot-on template: src=network/iiab-hotspot-on
dest=/usr/bin/iiab-hotspot-on dest=/usr/bin/iiab-hotspot-on
owner=root owner=root
group=root group=root
mode=0755 mode=0755
- name: Use custom iiab-hotspot-off - name: Create /usr/bin/iiab-hotspot-off from template
template: src=network/iiab-hotspot-off template: src=network/iiab-hotspot-off
dest=/usr/bin/iiab-hotspot-off dest=/usr/bin/iiab-hotspot-off
owner=root owner=root