Handle different service names across OSs
This commit is contained in:
parent
1dfadb6011
commit
751a9694d9
@ -2,10 +2,10 @@
|
|||||||
---
|
---
|
||||||
- name: Restart Samba
|
- name: Restart Samba
|
||||||
service:
|
service:
|
||||||
name: smb
|
name: "{{ samba_service }}"
|
||||||
state: restarted
|
state: restarted
|
||||||
|
|
||||||
- name: Restart WinBind
|
- name: Restart WinBind
|
||||||
service:
|
service:
|
||||||
name: nmb
|
name: "{{ winbind_service }}"
|
||||||
state: restarted
|
state: restarted
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
# File: roles/samba/tasks/main.yml
|
# File: roles/samba/tasks/main.yml
|
||||||
---
|
---
|
||||||
|
|
||||||
|
- include_vars: "{{ item }}"
|
||||||
|
with_first_found:
|
||||||
|
- "os_{{ ansible_distribution }}.yml"
|
||||||
|
- "os_{{ ansible_os_family }}.yml"
|
||||||
|
- "default.yml"
|
||||||
|
|
||||||
- name: Install Samba packages
|
- name: Install Samba packages
|
||||||
action: "{{ ansible_pkg_mgr }} pkg={{ item }} state=installed"
|
action: "{{ ansible_pkg_mgr }} pkg={{ item }} state=installed"
|
||||||
with_items:
|
with_items:
|
||||||
@ -72,14 +78,14 @@
|
|||||||
|
|
||||||
- name: Start Samba service
|
- name: Start Samba service
|
||||||
service:
|
service:
|
||||||
name: smb
|
name: "{{ samba_service }}"
|
||||||
state: started
|
state: started
|
||||||
enabled: yes
|
enabled: yes
|
||||||
tags: samba
|
tags: samba
|
||||||
|
|
||||||
- name: Start WindBind service
|
- name: Start WindBind service
|
||||||
service:
|
service:
|
||||||
name: nmb
|
name: "{{ winbind_service }}"
|
||||||
state: started
|
state: started
|
||||||
enabled: yes
|
enabled: yes
|
||||||
tags: samba
|
tags: samba
|
||||||
|
4
vars/default.yml
Normal file
4
vars/default.yml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
samba_service: smbd
|
||||||
|
winbind_service: nmbd
|
4
vars/os_CentOS.yml
Normal file
4
vars/os_CentOS.yml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
samba_service: smb
|
||||||
|
winbind_service: nmb
|
4
vars/os_Debian.yml
Normal file
4
vars/os_Debian.yml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
samba_service: smbd
|
||||||
|
winbind_service: nmbd
|
Loading…
Reference in New Issue
Block a user