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

Merge pull request #2537 from holta/samba-cleaner

Samba role standardized/modularized, for runrole etc
This commit is contained in:
A Holt 2020-09-21 16:48:43 -04:00 committed by GitHub
commit 11d2774d14
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 107 additions and 77 deletions

View file

@ -78,12 +78,12 @@
- name: SSHD
include_role:
name: sshd
# has no "when: XXXXX_install" flag
#when: sshd_install | bool # Flag might be created in future?
- name: IIAB-ADMIN
include_role:
name: iiab-admin
# has no "when: XXXXX_install" flag
#when: iiab-admin_install | bool # Flag might be created in future?
- name: OPENVPN
include_role:

View file

@ -27,6 +27,7 @@
- name: WWW_BASE (WWW_OPTIONS should be installed later)
include_role:
name: www_base
#when: www_base_install | bool # Flag might be created in future?
- name: Recording STAGE 3 HAS COMPLETED =====================
lineinfile:

View file

@ -1,19 +1,28 @@
# Server Options
- name: ...IS BEGINNING ==================================
file:
path: "{{ iiab_state_file }}"
state: touch
stat:
path: "{{ iiab_state_file }}" # /etc/iiab/iiab_state.yml
register: iiab_state_file_check
- name: Install IIAB's python libs
# 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?
- name: Install named / BIND
include_tasks: roles/network/tasks/named.yml
when: named_install | bool
- name: Installing dhcpd
- name: Install dhcpd
include_tasks: roles/network/tasks/dhcpd.yml
when: dhcpd_install | bool
@ -24,7 +33,7 @@
- name: Install Bluetooth - only on Raspberry Pi
include_role:
name: bluetooth
when: rpi_model != "none" and bluetooth_install
when: bluetooth_install and rpi_model != "none"
- name: USB_LIB
include_role:
@ -48,8 +57,7 @@
- name: WWW_OPTIONS (WWW_BASE should have been installed earlier)
include_role:
name: www_options
#when: www_options_install | bool
#when: apache_install or nginx_install
#when: www_options_install | bool # Flag might be created in future?
- name: Recording STAGE 4 HAS COMPLETED ==================
lineinfile:

View file

@ -3,10 +3,11 @@
- name: ...IS BEGINNING ====================================
command: echo
# UNMAINTAINED
- name: AZURACAST
include_role:
name: azuracast
when: azuracast_install | bool
when: azuracast_install is defined and azuracast_install
# UNMAINTAINED
- name: DOKUWIKI

View file

@ -10,7 +10,7 @@
2. Without PHP available via FastCGI, any function at all for PHP-based applications validates NGINX.
3. Current state of IIAB App/Service migrations as of 2020-09-12:
3. Current state of IIAB App/Service migrations as of 2020-09-21:
1. These support "Native" NGINX but ***NOT*** Apache
* Admin Console
@ -45,8 +45,11 @@
* kalite (menu goes directly to ports 8006-8008)
* minetest [*]
* openvpn
* mosquitto [*]
* pbx [*, requires Apache for now, as in Section iii.]
* phpmyadmin [*, requires Apache for now, as in Section iii.]
* samba
* transmission [*]
* vnstat [*]
[*] The 6 above starred roles could use improvement, as of 2020-09-12.
[*] The 8 above starred roles could use improvement, as of 2020-09-21.

View file

@ -0,0 +1,19 @@
- name: Enable & Start Samba service ({{ smb_service }}) and NetBIOS name service ({{ nmb_service }}) if samba_enabled
systemd:
name: "{{ item }}"
state: started
enabled: yes
when: samba_enabled | bool
with_items:
- "{{ smb_service }}"
- "{{ nmb_service }}"
- name: Disable & Stop Samba service ({{ smb_service }}) and NetBIOS name service ({{ nmb_service }}) if not samba_enabled
systemd:
name: "{{ item }}"
state: stopped
enabled: no
when: not samba_enabled
with_items:
- "{{ smb_service }}"
- "{{ nmb_service }}"

View file

@ -0,0 +1,41 @@
- name: "Create smb user: {{ smbuser }}"
user:
name: "{{ smbuser }}"
shell: /sbin/nologin
password: "{{ smbpassword }}"
- name: "Create public folder: {{ shared_dir }}" # /library/public
file:
path: "{{ shared_dir }}"
owner: "{{ smbuser }}"
group: "{{ smbuser }}"
mode: '0777'
state: directory
# Install and configure samba server (requires ports 137, 138, 139, 445 open).
- name: "Install 4 packages: samba, samba-client, samba-common, cifs-client"
package:
name:
- samba
- samba-client
- samba-common
- cifs-utils
state: present
- name: Install /etc/samba/smb.conf from template
template:
src: smb.conf.j2
dest: /etc/samba/smb.conf
# RECORD Samba AS INSTALLED
- name: "Set 'samba_installed: True'"
set_fact:
samba_installed: True
- name: "Add 'samba_installed: True' to {{ iiab_state_file }}"
lineinfile:
path: "{{ iiab_state_file }}" # /etc/iiab/iiab_state.yml
regexp: '^samba_installed'
line: 'samba_installed: True'

View file

@ -1,78 +1,35 @@
- name: "Create smb user: {{ smbuser }}"
user:
name: "{{ smbuser }}"
shell: /sbin/nologin
password: "{{ smbpassword }}"
# "How do i fail a task in Ansible if the variable contains a boolean value?
# I want to perform input validation for Ansible playbooks"
# https://stackoverflow.com/questions/46664127/how-do-i-fail-a-task-in-ansible-if-the-variable-contains-a-boolean-value-i-want/46667499#46667499
- name: "Create public folder: {{ shared_dir }}"
file:
path: "{{ shared_dir }}"
owner: "{{ smbuser }}"
group: "{{ smbuser }}"
mode: '0777'
state: directory
# We assume 0-init/tasks/validate_vars.yml has DEFINITELY been run, so no need
# to re-check whether vars are defined here. As Ansible vars cannot be unset:
# https://serverfault.com/questions/856729/how-to-destroy-delete-unset-a-variable-value-in-ansible
# Install and configure samba server (requires ports 137, 138, 139, 445 open).
- name: "Install 4 packages: samba, samba-client, samba-common, cifs-client"
package:
name:
- samba
- samba-client
- samba-common
- cifs-utils
state: present
- name: Assert that "samba_install is sameas true" (boolean not string etc)
assert:
that: samba_install is sameas true
fail_msg: "PLEASE SET 'samba_install: True' e.g. IN: /etc/iiab/local_vars.yml"
quiet: yes
- name: Install /etc/samba/smb.conf from template
template:
src: smb.conf.j2
dest: /etc/samba/smb.conf
- name: Assert that "samba_enabled | type_debug == 'bool'" (boolean not string etc)
assert:
that: samba_enabled | type_debug == 'bool'
fail_msg: "PLEASE GIVE VARIABLE 'samba_enabled' A PROPER (UNQUOTED) ANSIBLE BOOLEAN VALUE e.g. IN: /etc/iiab/local_vars.yml"
quiet: yes
# RECORD Samba AS INSTALLED
- name: "Set 'samba_installed: True'"
set_fact:
samba_installed: True
- name: "Add 'samba_installed: True' to {{ iiab_state_file }}"
lineinfile:
path: "{{ iiab_state_file }}" # /etc/iiab/iiab_state.yml
regexp: '^samba_installed'
line: 'samba_installed: True'
- name: Install Samba if 'samba_installed' not defined, e.g. in {{ iiab_state_file }} # /etc/iiab/iiab_state.yml
include_tasks: install.yml
when: samba_installed is undefined
- name: Enable & Start Samba systemd service ({{ smb_service }}) if samba_enabled
service:
name: "{{ smb_service }}"
state: started
enabled: yes
when: samba_enabled | bool
- name: Enable & Start NetBIOS name service ({{ nmb_service }}) if samba_enabled
service:
name: "{{ nmb_service }}"
state: started
enabled: yes
when: samba_enabled | bool
- name: Disable & Stop Samba systemd service ({{ smb_service }}) if not samba_enabled
systemd:
name: "{{ smb_service }}"
state: stopped
enabled: no
when: not samba_enabled
- name: Disable & Stop NetBIOS name service ({{ nmb_service }}) if not samba_enabled
systemd:
name: "{{ nmb_service }}"
state: stopped
enabled: no
when: not samba_enabled
- include_tasks: enable-or-disable.yml
- name: Add 'samba' variable values to {{ iiab_ini_file }}
ini_file:
path: "{{ iiab_ini_file }}"
path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
section: samba
option: "{{ item.option }}"
value: "{{ item.value | string }}"