aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStevan Radaković <stevan.radakovic@linaro.org>2013-03-28 11:20:12 +0100
committerStevan Radaković <stevan.radakovic@linaro.org>2013-03-28 11:20:12 +0100
commit542dd5112688a7f7db890eb341d48e88b5735d39 (patch)
tree576a375f612beb070fea2a5b68be9f2858b8c94e
parent6fb71cee9c0cfd2d7272ee943354c12691ba705c (diff)
Revert changes.
-rw-r--r--INSTALL1
-rwxr-xr-xscripts/rhodecode-setup17
2 files changed, 0 insertions, 18 deletions
diff --git a/INSTALL b/INSTALL
index 7e51f51..eff25ab 100644
--- a/INSTALL
+++ b/INSTALL
@@ -412,7 +412,6 @@ from the rhodecode-config base directory:
python scripts/rhodecode-setup --rhodecode-config config/production.ini \
--rhodecode-usr $USR --rhodecode-branch $TAG \
- --rhodecode-admin-email $EMAIL --rhodecode-admin-pwd $ADMIN_PWD \
--rhodecode-checkout-dir $CO_DIR --dbname $DB_NAME \
--assume-yes --update
diff --git a/scripts/rhodecode-setup b/scripts/rhodecode-setup
index 7eca401..2f6add8 100755
--- a/scripts/rhodecode-setup
+++ b/scripts/rhodecode-setup
@@ -207,14 +207,6 @@ def check_cli_args(args):
print ("During update it is necessary to specify the RhodeCode"
"database name.")
sys.exit(1)
- if not args.rhodecode_admin_pwd:
- print ("It is necessary to specify the administration "
- "password for RhodeCode")
- sys.exit(1)
- if not args.rhodecode_admin_email:
- print ("It is necessary to specify the administration "
- "email for RhodeCode")
- sys.exit(1)
else:
if not args.rhodecode_admin_pwd:
@@ -786,15 +778,6 @@ if __name__ == '__main__':
update_rhodecode(args.rhodecode_branch, work_dir)
reinstall_rhodecode(work_dir)
- setup_rhodecode(work_dir,
- rhodecode_conf,
- args.repos_dir,
- args.rhodecode_admin_usr,
- args.rhodecode_admin_pwd,
- args.rhodecode_admin_email,
- user=args.rhodecode_usr,
- assume_yes=args.assume_yes)
-
# Update database schema.
update_database_schema(work_dir, rhodecode_conf, True)