From 28f61dc582684c0f786812b7477008bfdfcb3f2e Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 29 Apr 2015 12:57:27 -0700 Subject: [PATCH] Password must be 6 chars long --- CloudronManifest.json | 2 +- start.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CloudronManifest.json b/CloudronManifest.json index d2dcae3..9a9f72f 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -1,7 +1,7 @@ { "id": "io.gogs.cloudronapp", "title": "A self-hosted Git service", - "description": "easiest, fastest and most painless way to set up a self-hosted Git service.\nDefault credentials are admin:admin", + "description": "easiest, fastest and most painless way to set up a self-hosted Git service.\nDefault credentials are administrator:admin123", "tagline": "painless self-hosted Git Service", "version": "0.0.1", "healthCheckPath": "/", diff --git a/start.sh b/start.sh index 9ac1af7..62755ed 100755 --- a/start.sh +++ b/start.sh @@ -37,9 +37,9 @@ if [[ ! -f /home/cloudron/gogs/custom/conf/app.ini ]]; then --data "smtp_host=${MAIL_SMTP_SERVER}" \ --data smtp_user= \ --data smtp_pwd= \ - --data admin_name=admin \ - --data admin_passwd=admin \ - --data admin_confirm_passwd=admin \ + --data admin_name=administrator \ + --data admin_passwd=admin123 \ + --data admin_confirm_passwd=admin123 \ --data-urlencode admin_email=girish@forwardbias.in fi