mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
72 lines
2.1 KiB
YAML
72 lines
2.1 KiB
YAML
# Server Options
|
|
|
|
- name: ...IS BEGINNING ==================================
|
|
stat:
|
|
path: "{{ iiab_state_file }}" # /etc/iiab/iiab_state.yml
|
|
register: iiab_state_file_check
|
|
|
|
# 2020-09-21: Why is checking for iiab_state.yml in Stage 4 out of curiosity?
|
|
# Possibly move this to Stage 0? Either way...this is a STRICT CHECK in case
|
|
# {iiab-stages.yml, run-one-role.yml, etc} omit the file from "vars_files:"
|
|
|
|
- name: ENFORCE precondition that {{ iiab_state_file }} MUST exist
|
|
assert:
|
|
that: iiab_state_file_check.stat.exists
|
|
|
|
- name: Install pylibs (IIAB's python libs)
|
|
include_role:
|
|
name: pylibs
|
|
#when: pylibs_install | bool # Flag might be created in future?
|
|
|
|
# Also run roles/1-prep/tasks/main.yml as required by OpenVPN.
|
|
- name: SSHD
|
|
include_role:
|
|
name: sshd
|
|
when: sshd_install | bool
|
|
|
|
- name: Install named / BIND
|
|
include_tasks: roles/network/tasks/named.yml
|
|
when: named_install | bool
|
|
|
|
- name: Install dhcpd
|
|
include_tasks: roles/network/tasks/dhcpd.yml
|
|
when: dhcpd_install | bool
|
|
|
|
- name: Install Squid (and DansGuardian if dansguardian_install)
|
|
include_tasks: roles/network/tasks/squid.yml
|
|
when: squid_install | bool
|
|
|
|
- name: Install Bluetooth - only on Raspberry Pi
|
|
include_role:
|
|
name: bluetooth
|
|
when: bluetooth_install and rpi_model != "none"
|
|
|
|
- name: USB_LIB
|
|
include_role:
|
|
name: usb_lib
|
|
when: usb_lib_install | bool
|
|
|
|
- name: CUPS
|
|
include_role:
|
|
name: cups
|
|
when: cups_install | bool
|
|
|
|
- name: SAMBA
|
|
include_role:
|
|
name: samba
|
|
when: samba_install | bool
|
|
|
|
# 2020-02-17: what was roles/homepage lives in roles/www_options. Eventually
|
|
# softcoding of iiab_home_url should happen everywhere (incl Admin Console) for
|
|
# more field options, e.g. changing /library/www/html/home even when offline...
|
|
|
|
- name: WWW_OPTIONS (WWW_BASE should have been installed earlier)
|
|
include_role:
|
|
name: www_options
|
|
#when: www_options_install | bool # Flag might be created in future?
|
|
|
|
- name: Recording STAGE 4 HAS COMPLETED ==================
|
|
lineinfile:
|
|
path: "{{ iiab_env_file }}"
|
|
regexp: '^STAGE=*'
|
|
line: 'STAGE=4'
|