aboutsummaryrefslogtreecommitdiff
path: root/scripts/rhodecode-setup
diff options
context:
space:
mode:
authorMilo Casagrande <milo@ubuntu.com>2013-01-23 18:40:00 +0100
committerMilo Casagrande <milo@ubuntu.com>2013-01-23 18:40:00 +0100
commit511fe63c6703737e38b51a7205298532193282ac (patch)
treeea0b30787b2c5332ba3c38c1888dd7d5d8061b1f /scripts/rhodecode-setup
parent957c94cd84c23f177e0e6d700f178754deef4a0f (diff)
Fixed error on var name.
Diffstat (limited to 'scripts/rhodecode-setup')
-rw-r--r--scripts/rhodecode-setup13
1 files changed, 9 insertions, 4 deletions
diff --git a/scripts/rhodecode-setup b/scripts/rhodecode-setup
index dfea028..81810c0 100644
--- a/scripts/rhodecode-setup
+++ b/scripts/rhodecode-setup
@@ -579,15 +579,17 @@ def print_install_report(args, home_dir, config_file):
:param args: The command line arguments.
"""
print "\n\nRhodeCode Linaro Installation Report\n"
+
print "\nRhodeCode Information\n"
print "\tCode cloned from: %s" % args.rhodecode_git_url
- print "\tInstallation Dir: %s" % home_dir
+ print "\tInstallation Directory: %s" % home_dir
print "\tConfiguration file: %s" % config_file
- print "\tData Dir: %s" % args.rhodecode_data_dir
- print "\tRepos Dir: %s" % args.repos_dir
+ print "\tData Directory: %s" % args.rhodecode_data_dir
+ print "\tRepos Directory: %s" % args.repos_dir
print "\tAdmin Username: %s" % args.rhodecode_admin_usr
print "\tAdmin Password: %s" % args.rhodecode_admin_pwd
print "\tAdmin Email: %s" % args.rhodecode_admin_email
+
print "\nDatabase Information\n"
if args.development:
print "\tDatabase Backend: SQLite"
@@ -595,6 +597,9 @@ def print_install_report(args, home_dir, config_file):
else:
print "\tDatabase Backend: PostreSQL"
print "\tDatabase Name: %s" % args.dbname
+ print "\tDatabase Role: %s" % args.postgres_role
+ print "\tDatabase Role Password: %s" % args.postgres_role_pwd
+
print "\nCelery/RabbitMQ Integration\n"
print "\tCelery activated: %s" % (not args.no_celery)
if not args.no_celery:
@@ -674,7 +679,7 @@ if __name__ == '__main__':
# Apache configurations.
apache_conf = os.path.abspath(args.apache_conf)
- copy_file(apache_conf, args.apache_default_dir)
+ copy_file(apache_conf, args.apache_website_dir)
disable_apache_sites(APACHE_DISABLE_SITES)
enable_apache_modules(APACHE_ENABLE_MODULES)