mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 19:52:06 +00:00
48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
# Common OS-Level Additions & Mods (that only need to be performed once)
|
|
|
|
- name: ...IS BEGINNING ==========================================
|
|
meta: noop
|
|
|
|
- name: Create IIAB directory structure ("file layout")
|
|
include_tasks: fl.yml
|
|
|
|
- include_tasks: packages.yml
|
|
|
|
- name: "Network prep, including partial setup of iptables (firewall) -- SEE ALSO: 1-prep/tasks/raspberry_pi.yml"
|
|
include_tasks: network.yml
|
|
|
|
- include_tasks: iiab-startup.yml
|
|
|
|
|
|
# UNMAINTAINED
|
|
#- include_tasks: centos.yml
|
|
# when: ansible_distribution == "CentOS"
|
|
|
|
# UNMAINTAINED
|
|
#- include_tasks: fedora.yml
|
|
# when: ansible_distribution == "Fedora"
|
|
|
|
# UNMAINTAINED
|
|
#- include_tasks: prep.yml
|
|
# when: not is_debuntu
|
|
|
|
# UNMAINTAINED
|
|
#- include_tasks: xo.yml
|
|
# when: xo_model != "none" or osbuilder is defined
|
|
|
|
# UNMAINTAINED
|
|
#- include_tasks: net_mods.yml
|
|
# when: not is_debuntu and not is_F18
|
|
|
|
# UNMAINTAINED
|
|
#- name: Install /etc/profile.d/zzz_iiab.sh from template, to add sbin dirs to unprivileged users' $PATH
|
|
# template:
|
|
# dest: /etc/profile.d/zzz_iiab.sh
|
|
# src: zzz_iiab.sh
|
|
|
|
|
|
- name: Recording STAGE 2 HAS COMPLETED ==========================
|
|
lineinfile:
|
|
path: "{{ iiab_env_file }}"
|
|
regexp: '^STAGE=*'
|
|
line: 'STAGE=2'
|