7 lines
189 B
Bash
7 lines
189 B
Bash
|
#!/bin/sh
|
||
|
DOMAIN="$1.gkaklas.gr"
|
||
|
APP="$1"
|
||
|
|
||
|
yunohost domain add "${DOMAIN}" --install-letsencrypt-cert
|
||
|
yunohost app install -a "domain=${DOMAIN}&path=/&init_main_permission=admins" "${APP}"
|