Skip to content

Commit

Permalink
Remove admin-password option from yunohost commands
Browse files Browse the repository at this point in the history
  • Loading branch information
rthouvenin committed Mar 10, 2021
1 parent 7ff0acd commit 572ea0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tasks/domains.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
set_fact: yunohost_installed_domains="{{ yunohost_installed_domains_raw.stdout | from_json }}"

- name: Create domains
shell: yunohost domain add {{ item }} --admin-password {{ yunohost.password }}
shell: yunohost domain add {{ item }}
with_items: "{{ yunohost.extra_domains }}"
when: item not in yunohost_installed_domains.domains
2 changes: 1 addition & 1 deletion tasks/users.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

- name: Create missing users
shell: |
yunohost user create {{ item.name }} --admin-password {{ yunohost.password }} \
yunohost user create {{ item.name }} \
-f {{ item.firstname }} \
-l {{ item.lastname }} \
-m {{ item.mail }} \
Expand Down

0 comments on commit 572ea0d

Please sign in to comment.