forked from sylvainar/ansible-yunohost
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch -m (mail) was deprecated in favor of -d (--domaim)
also added example users w/ {{ domain }}
- Loading branch information
Showing
2 changed files
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,13 +32,18 @@ yunohost: | |
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 | ||
# The list of frontend users. | ||
users: | ||
- name: user1 # user which uses the default domain for its account | ||
pass: p@ssw0rd | ||
firstname: Jane | ||
lastname: Doe | ||
mail: [email protected] | ||
domain: {{ domain }} | ||
- name: user1 # user which uses the first extra_domain for its account | ||
pass: p@ssw0rd | ||
firstname: Jane | ||
lastname: Doe | ||
domain: {{ extra_domain.[1] }} | ||
``` | ||
Dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters