Restart sssd after changes.

This commit is contained in:
Patrick Toal
2019-07-26 17:32:45 -04:00
parent 9e39e0bd53
commit c33a33399f
3 changed files with 12 additions and 2 deletions

1
.gitignore vendored
View File

@@ -111,3 +111,4 @@ venv.bak/
roles/toallab.infrastructure/backup/ roles/toallab.infrastructure/backup/
roles/lightbulb-ansiblered-deck/ roles/lightbulb-ansiblered-deck/
.vscode/

View File

@@ -6,4 +6,12 @@
- name: Restart mineos - name: Restart mineos
become: true become: true
service: name=mineos state=restarted service:
name: mineos
state: restarted
- name: restart_sssd
become: true
service:
name: sssd
state: restarted

View File

@@ -24,7 +24,8 @@
state: present state: present
backup: yes # not required. Create a backup file including the timestamp information so you can get the original file back if you somehow clobbered it incorrectly. backup: yes # not required. Create a backup file including the timestamp information so you can get the original file back if you somehow clobbered it incorrectly.
create: no create: no
notify: restart_sssd
# - name: Create minecraft group # - name: Create minecraft group
# become: true # become: true
# group: name=minecraft state=present system=yes # group: name=minecraft state=present system=yes