use WEBI_HOST rather than webinstall.dev
[webi-installers/.git] / ssh-utils / ssh-adduser.sh
index 47aefae2eeb348aa449d343488d39665d3f39e19..27c6dc89147fb66c3e3317e5bbb3fbf85985274f 100644 (file)
@@ -39,8 +39,9 @@
     sudo -i -u app bash -c 'ssh-keygen -b 2048 -t rsa -f /home/app/.ssh/id_rsa -q -N ""'
 
     # Install webi for the new 'app' user
-    sudo -i -u app bash -c 'curl -fsSL https://webinstall.dev/webi | bash' \
-        || sudo -i -u app bash -c 'wget -q -O - https://webinstall.dev/webi | bash'
+    WEBI_HOST=${WEBI_HOST:-"https://webinstall.dev"}
+    sudo -i -u app bash -c "curl -fsSL '$WEBI_HOST/webi' | bash" \
+        || sudo -i -u app bash -c "wget -q -O - '$WEBI_HOST/webi' | bash"
 
     # TODO ensure that ssh-password login is off