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

Experiment: comment out Ansible tags in 25 files

This commit is contained in:
root 2020-01-13 20:41:03 -05:00
parent 6e6fab170d
commit 780ed4a955
25 changed files with 82 additions and 142 deletions

View file

@ -9,7 +9,7 @@
path: "{{ shared_dir }}"
owner: "{{ smbuser }}"
group: "{{ smbuser }}"
mode: 0777
mode: '0777'
state: directory
# Install and configure samba server (requires ports 137, 138, 139, 445 open).
@ -21,9 +21,7 @@
- samba-common
- cifs-utils
state: present
tags:
- samba
- download
#tags: samba, download
- name: Install /etc/samba/smb.conf from template
template:
@ -41,8 +39,7 @@
name: "{{ smb_service }}"
state: started
enabled: yes
tags:
- samba
#tags: samba
when: samba_enabled | bool
- name: Enable & Start NetBIOS name server ({{ nmb_service }})
@ -50,8 +47,7 @@
name: "{{ nmb_service }}"
state: started
enabled: yes
tags:
- samba
#tags: samba
when: samba_enabled | bool
- name: Disable Samba if not samba_enabled
@ -59,8 +55,7 @@
name: "{{ smb_service }}"
state: stopped
enabled: no
tags:
- samba
#tags: samba
when: not samba_enabled
- name: Disable NetBIOS name server ({{ nmb_service }}) if not samba_enabled
@ -68,8 +63,7 @@
name: "{{ nmb_service }}"
state: stopped
enabled: no
tags:
- samba
#tags: samba
when: not samba_enabled
- name: Add 'samba' variable values to {{ iiab_ini_file }}