mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-22 21:23:23 +02:00
Update to 2022-02-02 23:00
This commit is contained in:
parent
dcd16b8ee8
commit
81da0fe8f1
@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
# Version to deploy
|
# Version to deploy
|
||||||
bookstack_version: '21.12.2'
|
bookstack_version: '21.12.4'
|
||||||
# URL of the arhive
|
# URL of the arhive
|
||||||
bookstack_archive_url: https://github.com/BookStackApp/BookStack/archive/v{{ bookstack_version }}.tar.gz
|
bookstack_archive_url: https://github.com/BookStackApp/BookStack/archive/v{{ bookstack_version }}.tar.gz
|
||||||
# Expected sha1 of the archive
|
# Expected sha1 of the archive
|
||||||
bookstack_archive_sha1: cc4498f2fba7094172c46eced77d6e9ec28410e1
|
bookstack_archive_sha1: 41bd7ee0551f527ccd9fd9088c21c1f05118821d
|
||||||
|
|
||||||
# Should ansible handle bookstack upgrades or just the inintial install
|
# Should ansible handle bookstack upgrades or just the inintial install
|
||||||
bookstack_manage_upgrade: True
|
bookstack_manage_upgrade: True
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
# Veresion of diagrams to deploy
|
# Veresion of diagrams to deploy
|
||||||
diagrams_version: 16.2.4
|
diagrams_version: 16.5.3
|
||||||
# URL of the WAR file to deploy
|
# URL of the WAR file to deploy
|
||||||
diagrams_war_url: https://github.com/jgraph/drawio/releases/download/v{{ diagrams_version }}/draw.war
|
diagrams_war_url: https://github.com/jgraph/drawio/releases/download/v{{ diagrams_version }}/draw.war
|
||||||
# Expected sha1 of the WAR file
|
# Expected sha1 of the WAR file
|
||||||
diagrams_war_sha1: 36eb6e07a3eacffc53cdb71a780087380e74bf3c
|
diagrams_war_sha1: 0891c13282addb9a40cdbe5745d195eeb01cc708
|
||||||
# root directory of the installation
|
# root directory of the installation
|
||||||
diagrams_root_dir: /opt/diagrams
|
diagrams_root_dir: /opt/diagrams
|
||||||
# Should ansible manage upgrades, or just initial install ?
|
# Should ansible manage upgrades, or just initial install ?
|
||||||
|
@ -7,7 +7,7 @@ framadate_id: 1
|
|||||||
framadate_root_dir: /opt/framadate_{{ framadate_id }}
|
framadate_root_dir: /opt/framadate_{{ framadate_id }}
|
||||||
|
|
||||||
# The version to deploy
|
# The version to deploy
|
||||||
framadate_version: '1.1.17'
|
framadate_version: '1.1.19'
|
||||||
|
|
||||||
# Should ansible manage upgrades, or only initial installation
|
# Should ansible manage upgrades, or only initial installation
|
||||||
framadate_manage_upgrade: True
|
framadate_manage_upgrade: True
|
||||||
@ -16,7 +16,7 @@ framadate_manage_upgrade: True
|
|||||||
framadate_zip_url: https://framagit.org/framasoft/framadate/framadate/-/archive/{{ framadate_version }}/framadate-{{ framadate_version }}.zip
|
framadate_zip_url: https://framagit.org/framasoft/framadate/framadate/-/archive/{{ framadate_version }}/framadate-{{ framadate_version }}.zip
|
||||||
|
|
||||||
# The sha1 checksum of the archive
|
# The sha1 checksum of the archive
|
||||||
framadate_zip_sha1: 5c0782f1db6a797df70047c3715003178956ca3d
|
framadate_zip_sha1: c501c8a7d2cab0ff45ad865c689ba4139585ee11
|
||||||
|
|
||||||
# The user account under which PHP is executed
|
# The user account under which PHP is executed
|
||||||
framadate_php_user: php-framadate_{{ framadate_id }}
|
framadate_php_user: php-framadate_{{ framadate_id }}
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
- unzip
|
- unzip
|
||||||
- acl
|
- acl
|
||||||
- tar
|
- tar
|
||||||
|
- git
|
||||||
tags: framadate
|
tags: framadate
|
||||||
|
|
||||||
- name: Create user account for PHP
|
- name: Create user account for PHP
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
|
- name: Install mysqldump
|
||||||
|
package: name=mariadb
|
||||||
|
|
||||||
- name: Create archive dir
|
- name: Create archive dir
|
||||||
file: path={{ root_dir }}/archives/{{ version }} state=directory mode=700
|
file: path={{ root_dir }}/archives/{{ version }} state=directory mode=700
|
||||||
|
|
||||||
|
@ -46,7 +46,12 @@
|
|||||||
pip: name=dns-lexicon state=latest
|
pip: name=dns-lexicon state=latest
|
||||||
environment:
|
environment:
|
||||||
- https_proxy: "{{ system_proxy | default('') }}"
|
- https_proxy: "{{ system_proxy | default('') }}"
|
||||||
when: ansible_os_family == 'Debian'
|
when: ansible_os_family == 'Debian' and ansible_distribution_major_version is version('11', '<')
|
||||||
|
tags: web,ssl
|
||||||
|
|
||||||
|
- name: Install lexicon
|
||||||
|
package: name=lexicon state=latest
|
||||||
|
when: ansible_os_family == 'Debian' and ansible_distribution_major_version is version('11', '>=')
|
||||||
tags: web,ssl
|
tags: web,ssl
|
||||||
|
|
||||||
- name: Create hook directories
|
- name: Create hook directories
|
||||||
|
@ -368,3 +368,6 @@ packages.groonga.org
|
|||||||
# Clojure
|
# Clojure
|
||||||
download.clojure.org
|
download.clojure.org
|
||||||
repo.clojars.org
|
repo.clojars.org
|
||||||
|
|
||||||
|
# LUX RPM repo
|
||||||
|
repo.iotti.biz
|
||||||
|
Loading…
x
Reference in New Issue
Block a user