etherpad/tasks/git.yml

21 lines
461 B
YAML
Raw Permalink Normal View History

2021-03-14 17:53:38 +01:00
---
- name: '[GIT] - Create directory'
file:
path: "/var/www/"
state: directory
owner: "{{ etherpad_username }}"
group: "{{ etherpad_group }}"
mode: 0755
2021-03-14 17:53:38 +01:00
- name: '[GIT] - Deploy source'
git:
repo: https://github.com/ether/etherpad-lite.git
dest: "{{ etherpad_app_dir }}/app"
2021-03-14 17:53:38 +01:00
force: yes
update: yes
version: "{{ etherpad_version }}"
2023-04-08 22:33:33 +02:00
become: true
become_user: "{{ etherpad_username }}"
2021-03-14 17:53:38 +01:00
notify: restart etherpad