1
0
Fork 0
No description
Find a file
Sylvain Arnouts 04edb3b57d
Merge pull request #1 from zamentur/patch-1
[fix] admin is be a correct user in yunohost
2017-11-21 18:43:46 +01:00
default Add support for users 2017-09-17 21:27:54 +02:00
meta Update meta, since Yunohost is only compatible with debian 8 2017-08-23 14:24:41 +02:00
tasks Add support for users 2017-09-17 21:27:54 +02:00
LICENSE Initial commit 2017-08-23 12:42:15 +02:00
README.md [fix] admin is be a correct user in yunohost 2017-11-21 17:57:13 +01:00

ansible-yunohost

Deploy Yunohost with Ansible !

Requirements

None.

Role Variables

Example of Variables:

yunohost:
  # Link to the install script
  install_script_url: https://raw.githubusercontent.com/YunoHost/install_script/master/install_yunohost
  # The main domain, then a list of other domains.
  domain: example.com
  extra_domains:
    - example2.com
    - example3.com
  # Yunohost admin password
  password: MYINSECUREPWD_PLZ_OVERRIDE_THIS
  # If you don't want to use a noho.st url
  ignore_dyndns: False
  # The list of apps you want to install.
  apps:
    - label: Tiny Tiny RSS # Label is important, it's a reference for the Playbook.
      link: ttrss # It can be the name of an official app or a github link
      args: # Provide here args. Path and domain are mandatory, other args depend of the app (cf manifest.json of app).
        path: /ttrss
        domain: example.com
  # The list of users.
  users:
    - name: user1
      pass: p@ssw0rd
      firstname: Jane
      lastname: Doe
      mail: jane.doe@example.com

Dependencies

None.

Example Playbook

- name: Provision servers
  hosts: all
  remote_user: root
  pre_tasks:
    - name: Update all packages and index
      apt:
        upgrade: dist
        update_cache: yes

  roles:
     - { role: sylvainar.yunohost }

License

GPL-3.0