[etherpad] bump version to 1.8.18

main
_shirenn 2022-11-30 15:24:48 +01:00
parent edb7b86dc7
commit e911cab5f1
2 changed files with 12 additions and 1 deletions

View File

@ -7,6 +7,7 @@ glob_etherpad:
skin: crans skin: crans
ip: 0.0.0.0 ip: 0.0.0.0
port: 9001 port: 9001
version: 1.8.18
database: database:
user: crans user: crans
host: pgsql.adm.crans.org host: pgsql.adm.crans.org
@ -24,6 +25,7 @@ glob_etherpad:
skin: crans skin: crans
ip: 0.0.0.0 ip: 0.0.0.0
port: 9002 port: 9002
version: 1.8.18
database: database:
user: crans user: crans
host: pgsql.adm.crans.org host: pgsql.adm.crans.org

View File

@ -11,11 +11,20 @@
retries: 3 retries: 3
until: apt_result is succeeded until: apt_result is succeeded
- name: Create etherpad directory
file:
path: /var/www/{{ item.name }}
state: directory
owner: etherpad
group: etherpad
loop: "{{ etherpad.instances }}"
- name: Clone EtherPad - name: Clone EtherPad
git: git:
repo: https://github.com/ether/etherpad-lite.git repo: https://github.com/ether/etherpad-lite.git
dest: /var/www/{{ item.name }} dest: /var/www/{{ item.name }}
version: 1.8.4 version: "{{ item.version }}"
force: true
loop: "{{ etherpad.instances }}" loop: "{{ etherpad.instances }}"
become: true become: true
become_user: etherpad become_user: etherpad