Enable and start additional services after the avahi-linker installation

This commit is contained in:
Alexander Grothe 2017-07-16 08:29:13 +02:00
parent 72c016d14a
commit 101d2c619e
3 changed files with 24 additions and 0 deletions

View File

@ -288,6 +288,7 @@ samba:
# additional packages you want to install # additional packages you want to install
extra_packages: extra_packages:
- vim - vim
- htop
- tree - tree
- w-scan - w-scan
- bpython - bpython
@ -846,6 +847,17 @@ install_avahi: true
state: started state: started
enabled: yes enabled: yes
masked: no masked: no
- name: enable and start additional services for avahi-linker
systemd:
name: '{{ item }}'
state: started
enabled: yes
masked: no
with_items:
- vdr-net-monitor
- vdr-update-monitor
- prevent-umount-on-pause
#+END_SRC #+END_SRC
** nfs-server ** nfs-server

View File

@ -47,6 +47,7 @@ samba:
# additional packages you want to install # additional packages you want to install
extra_packages: extra_packages:
- vim - vim
- htop
- tree - tree
- w-scan - w-scan
- bpython - bpython

View File

@ -48,3 +48,14 @@
state: started state: started
enabled: yes enabled: yes
masked: no masked: no
- name: enable and start additional services for avahi-linker
systemd:
name: '{{ item }}'
state: started
enabled: yes
masked: no
with_items:
- vdr-net-monitor
- vdr-update-monitor
- prevent-umount-on-pause