From eb3b342efa4f4a670dd3b99c34f4d9b181633190 Mon Sep 17 00:00:00 2001
From: Arthur BOUDREAULT <boudreaultarthur@ik.me>
Date: Fri, 8 Oct 2021 14:19:52 +0200
Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8Frefactor:=20changed=20variabl?=
 =?UTF-8?q?es=20pattern=20to=20be=20more=20consistent=20with=20ansible=20g?=
 =?UTF-8?q?ood=20practises=20and=20more=20flexible=20to=20use.?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 default/main.yml | 33 +++++++++++++++++++++++++--------
 1 file changed, 25 insertions(+), 8 deletions(-)

diff --git a/default/main.yml b/default/main.yml
index 70ece64..5613ae1 100644
--- a/default/main.yml
+++ b/default/main.yml
@@ -1,9 +1,26 @@
-yunohost:
-  install_script_url: https://install.yunohost.org/
-  domain: example.com
-  extra_domains: ~
-  password: MYINSECUREPWD_PLZ_OVERRIDE_THIS
-  ignore_dyndns: False
-  apps: ~
-  users: ~
+---
+# Debian 10 script only. 
+ynh_install_script_url: https://install.yunohost.org
 
+ynh_admin_password: MYINSECUREPWD_PLZ_OVERRIDE_THIS
+
+# The list of Yunohost domains.
+ynh_main_domain: domain.tld
+ynh_extra_domains: ~
+ynh_ignore_dyndns_server: False
+
+# The list of Yunohost users.
+ynh_users: ~
+  # - name: user1
+  #   pass: p@ssw0rd
+  #   firstname: Jane
+  #   lastname: Doe
+  #   mail_domain: domain.tld
+
+# The list of Yunohost apps.
+ynh_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 ynh app or a git repo link
+  #   args: # Provide args here. Path and domain are mandatory, other args depend on the app (cf manifest.json of app).
+  #     path: /ttrss
+  #     domain: domain.tld
\ No newline at end of file
-- 
GitLab