summaryrefslogtreecommitdiffstats
path: root/roles/common/tasks/stunnel.yml
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2017-05-31 17:39:57 +0200
committerGuilhem Moulin <guilhem@fripost.org>2017-05-31 17:39:57 +0200
commite136d3edbdb6749d4559939dc9fcbc11d166e34c (patch)
tree36e051f5675b003c38bac4fc6eec738698125437 /roles/common/tasks/stunnel.yml
parent789f4f2e1b01873b200b973584d1501ba32e3bfd (diff)
/lib/systemd/system → /etc/systemd/system
Diffstat (limited to 'roles/common/tasks/stunnel.yml')
-rw-r--r--roles/common/tasks/stunnel.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/common/tasks/stunnel.yml b/roles/common/tasks/stunnel.yml
index 68469cd..7cb8823 100644
--- a/roles/common/tasks/stunnel.yml
+++ b/roles/common/tasks/stunnel.yml
@@ -1,20 +1,20 @@
- name: Install stunnel4
apt: pkg=stunnel4
- name: Set 'ENABLED=0' in /etc/default/stunnel4
lineinfile: dest=/etc/default/stunnel4
regexp='^(\s*#)?\s*ENABLED='
line='ENABLED=0'
owner=root group=root
mode=0644
- name: Copy stunnel4 service file
- copy: src=lib/systemd/system/{{ item }}
- dest=/lib/systemd/system/{{ item }}
+ copy: src=etc/systemd/system/{{ item }}
+ dest=/etc/systemd/system/{{ item }}
owner=root group=root
mode=0644
notify:
- systemctl daemon-reload
with_items:
- stunnel4.service
- stunnel4@.service