ansible-roles/webapps/etherpad/README.md
Mathieu Gauthier-Pilote b424d5d2d2
All checks were successful
gitea/ansible-roles/pipeline/head This commit looks good
New role to install + upgrade Etherpad
2023-02-03 10:11:01 -05:00

1.1 KiB

etherpad

This role installs or upgrades the server for the real-time collaborative editor Etherpad.

FRENCH: Voir le fichier LISEZMOI.md pour le français.

Requirements

...

Role Variables

Several of the default values in defaults/main.yml must be changed either directly in defaults/main.yml or better even by overwriting them somewhere else, for example in your playbook (see the example below).

Dependencies

This Ansible role depends on the following other roles:

  • nodejs

Example Playbook

- name: "Deploy an Etherpad server"
  hosts: 
    - all
  vars:
    # Overwrite the role variable here
    domains: ['your-real-domain.org']
    service: 'my-etherpad'
    db_host: 'localhost'
    db_user: "{{ service }}"
    db_name: "{{ service }}"
    db_password: 'zKEh-CHANGE-ME-qIKc'

  pre_tasks:
    - name: "Install system roles"
      roles:
        - { role: nodejs, nodejs_apt_version: "{{ node_version }}" }

  roles:
    - { role: webapps/etherpad , tags: "etherpad" }

License

GPLv3

Author Information

Mathieu Gauthier-Pilote, sys. admin. at Evolix.