Fix echo lines to match and run main

This commit is contained in:
Luke Murphy 2020-03-12 17:32:36 +01:00
parent e7bedec4dc
commit dc7b416e57
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 5 additions and 4 deletions

View File

@ -14,12 +14,13 @@ setup_root_user() {
user_count=$(sqlite3 /data/gitea/gitea.db "select count(*) from user;")
if [[ "${user_count}" == "0" ]]; then
echo "==> Setting up root user for first run"
echo "====> Setting up root user for first run"
if gitea admin create-user --username "$ADMIN_USER" --password "$ADMIN_PASS" --email "$ADMIN_MAIL" --admin; then
echo "==> root user added"
echo "====> root user added"
else
echo "==> Failed to add root user"
echo "====> Failed to add root user"
exit 1
fi
fi
@ -32,4 +33,4 @@ main() {
setup_root_user
}
# main
main