Skip to content

Commit

Permalink
Bash arrays because ???
Browse files Browse the repository at this point in the history
Co-authored-by: Salamandar <[email protected]>
  • Loading branch information
alexAubin and Salamandar authored Nov 5, 2024
1 parent d53554a commit 377bb57
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions recipes
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,8 @@ function demo()

yunohost tools postinstall --domain "$DOMAIN" --password "demo" --username "demo" --fullname "Demo user" --force-diskspace

APPS="hextris nextcloud opensondage roundcube wallabag2 wordpress etherpad_mypads vaultwarden my_webapp freshrss yeswiki diagramsnet"
for APP in $APPS
do
APPS=(hextris nextcloud opensondage roundcube wallabag2 wordpress etherpad_mypads vaultwarden my_webapp freshrss yeswiki diagramsnet)
for APP in "${APPS[@]}"; do
yunohost app install $APP --force --args "domain=$DOMAIN&init_main_permission=visitors&admin=demo&path=/$APP&password=demo" || true
done

Expand Down

0 comments on commit 377bb57

Please sign in to comment.