mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-04 12:23:13 +02:00
Update to 2022-01-31 19:00
This commit is contained in:
parent
4b336e0934
commit
8fafa2187c
@ -1,11 +1,11 @@
|
||||
---
|
||||
|
||||
# Version to install
|
||||
gitea_version: 1.15.10
|
||||
gitea_version: 1.16.0
|
||||
# URL to the binary
|
||||
gitea_bin_url: https://dl.gitea.io/gitea/{{ gitea_version }}/gitea-{{ gitea_version }}-linux-amd64
|
||||
# sha256 of the binary
|
||||
gitea_bin_sha256: 8dfab91bde02a27fba0248ba1d0175b2e4ff57ba3ef7a9da3e68cbb11d15178a
|
||||
gitea_bin_sha256: dd526619a499f7764b3e3b646d55f6f9b672121566d7094eef45ec6847ef9fa9
|
||||
# Handle updates. If set to false, ansible will only install
|
||||
# Gitea and then won't touch an existing installation
|
||||
gitea_manage_upgrade: True
|
||||
|
@ -6,21 +6,13 @@
|
||||
- name: Download gitea binary
|
||||
get_url:
|
||||
url: "{{ gitea_bin_url }}"
|
||||
dest: "{{ gitea_root_dir }}/tmp/gitea"
|
||||
dest: "{{ gitea_root_dir }}/bin/gitea"
|
||||
checksum: "sha256:{{ gitea_bin_sha256 }}"
|
||||
mode: 755
|
||||
when: gitea_install_mode != 'none'
|
||||
notify: restart gitea
|
||||
tags: gitea
|
||||
|
||||
- name: Move gitea binary
|
||||
command: mv -f {{ gitea_root_dir }}/tmp/gitea {{ gitea_root_dir }}/bin/
|
||||
when: gitea_install_mode != 'none'
|
||||
tags: gitea
|
||||
|
||||
- name: Make gitea executable
|
||||
file: path={{ gitea_root_dir }}/bin/gitea mode=0755
|
||||
tags: gitea
|
||||
|
||||
- name: Deploy gitea service unit
|
||||
template: src=gitea.service.j2 dest=/etc/systemd/system/gitea.service
|
||||
register: gitea_unit
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
|
||||
mvn_version: 3.8.3
|
||||
mvn_version: 3.8.4
|
||||
mvn_archive_url: https://miroir.univ-lorraine.fr/apache/maven/maven-3/{{ mvn_version }}/binaries/apache-maven-{{ mvn_version }}-bin.tar.gz
|
||||
mvn_archive_sha1: cbd24fbfa9845e72f1ca01b8571b5db5bde6c333
|
||||
mvn_archive_sha1: 81a9f75f19aa7275152c262bcea1a77223b93445
|
||||
mvn_root_dir: /opt/maven
|
||||
|
@ -7,10 +7,10 @@
|
||||
state: absent
|
||||
tags: web
|
||||
|
||||
- name: Enable 1.16 module
|
||||
- name: Enable 1.20 module
|
||||
shell: |
|
||||
yum -y module reset nginx
|
||||
yum -y module enable nginx:1.16
|
||||
yum -y module enable nginx:1.20
|
||||
args:
|
||||
warn: False
|
||||
changed_when: False
|
||||
|
@ -42,7 +42,7 @@
|
||||
yum_repository:
|
||||
name: rabbitmq
|
||||
description: CentOS-8 - RabbitMQ 38
|
||||
baseurl: http://mirror.centos.org/centos/$releasever/messaging/$basearch/rabbitmq-38
|
||||
baseurl: http://vault.centos.org/centos/$releasever/messaging/$basearch/rabbitmq-38
|
||||
gpgcheck: True
|
||||
gpgkey: file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Messaging
|
||||
tags: repo,rabbitmq
|
||||
|
@ -367,3 +367,4 @@ packages.groonga.org
|
||||
|
||||
# Clojure
|
||||
download.clojure.org
|
||||
repo.clojars.org
|
||||
|
@ -4,6 +4,7 @@ taiga_packages:
|
||||
- git
|
||||
- tar
|
||||
- zstd
|
||||
- gcc-c++
|
||||
- python39-pip
|
||||
- python39-devel
|
||||
- python39-wheel
|
||||
|
@ -1,8 +1,8 @@
|
||||
---
|
||||
|
||||
vaultwarden_version: 1.23.1
|
||||
vaultwarden_version: 1.24.0
|
||||
vaultwarden_archive_url: https://github.com/dani-garcia/vaultwarden/archive/{{ vaultwarden_version }}.tar.gz
|
||||
vaultwarden_archive_sha1: efeb3e5e7fcaa6a86c3dd05cb5a046c366c15961
|
||||
vaultwarden_archive_sha1: f7ca2a4aad0d9f3bbd38affdff38348cd55bacf2
|
||||
|
||||
vaultwarden_web_version: 2.25.1b
|
||||
vaultwarden_web_archive_url: https://github.com/dani-garcia/bw_web_builds/releases/download/v{{ vaultwarden_web_version }}/bw_web_v{{ vaultwarden_web_version }}.tar.gz
|
||||
|
Loading…
x
Reference in New Issue
Block a user