Handle different service names across OSs
This commit is contained in:
parent
1dfadb6011
commit
751a9694d9
@ -2,10 +2,10 @@
|
||||
---
|
||||
- name: Restart Samba
|
||||
service:
|
||||
name: smb
|
||||
name: "{{ samba_service }}"
|
||||
state: restarted
|
||||
|
||||
- name: Restart WinBind
|
||||
service:
|
||||
name: nmb
|
||||
name: "{{ winbind_service }}"
|
||||
state: restarted
|
||||
|
@ -1,6 +1,12 @@
|
||||
# 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
|
||||
action: "{{ ansible_pkg_mgr }} pkg={{ item }} state=installed"
|
||||
with_items:
|
||||
@ -72,14 +78,14 @@
|
||||
|
||||
- name: Start Samba service
|
||||
service:
|
||||
name: smb
|
||||
name: "{{ samba_service }}"
|
||||
state: started
|
||||
enabled: yes
|
||||
tags: samba
|
||||
|
||||
- name: Start WindBind service
|
||||
service:
|
||||
name: nmb
|
||||
name: "{{ winbind_service }}"
|
||||
state: started
|
||||
enabled: yes
|
||||
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