Adding wiki githook stuff

This commit is contained in:
Ubergeek
2019-06-28 16:24:59 +00:00
parent 4340424c75
commit f9b314f961
4 changed files with 50 additions and 0 deletions

View File

@@ -53,6 +53,30 @@
group: root
mode: 0644
- name: Add githook for wiki local script
copy:
src: ../files/wiki-run
dest: /usr/local/bin/wiki-run
owner: root
group: root
mode: 0755
- name: Add wiki githook system path unit
copy:
src: ../files/wiki-run.path
dest: /etc/systemd/system/wiki-run.path
owner: root
group: root
mode: 0644
- name: Add wiki githook service unit
copy:
src: ../files/wiki-run.service
dest: /etc/systemd/system/wiki-run.service
owner: root
group: root
mode: 0644
- name: Enabling ansible-pull units
systemd:
name: "{{ item }}"
@@ -60,3 +84,5 @@
with_items:
- 'www-run.path'
- 'www-run.service'
- 'wiki-run.path'
- 'wiki-run.service'