Passbolt playbook

This commit is contained in:
Alexandre Iooss 2019-05-23 07:28:44 +02:00
parent 81b24357ca
commit a986ecd36a
No known key found for this signature in database
GPG Key ID: 6C79278F3FCDCC02
3 changed files with 50 additions and 0 deletions

5
passbolt.yml Normal file
View File

@ -0,0 +1,5 @@
---
# Deploy Passbolt
- hosts: passbolt.adm.auro.re
roles:
- passbolt

View File

@ -0,0 +1,10 @@
---
# URL to clone
passbolt_repo: https://github.com/passbolt/passbolt_api.git
passbolt_version: v2.10.0
# Install target
passbolt_path: /var/www/passbolt
# User used to run passbolt
passbolt_user: www-data

View File

@ -0,0 +1,35 @@
---
# See https://help.passbolt.com/hosting/install/ce/from-source.html
- name: Clone passbolt project
git:
repo: "{{ passbolt_repo }}"
dest: "{{ passbolt_path }}"
version: "{{ passbolt_version }}"
become: true
become_user: "{{ passbolt_user }}"
- name: Install passbolt dependencies
apt:
name:
- composer
- php-intl
- php-gnupg
- php-gd
state: present
update_cache: yes
register: apt_result
retries: 3
until: apt_result is succeeded
# Setup dependencies
- name: Install passbolt PHP dependencies
composer:
command: install
working_dir: "{{ passbolt_path }}"
no_dev: true
become: true
become_user: "{{ passbolt_user }}"
register: composer_result
retries: 3
until: composer_result is succeeded