summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorpenSec.IT UG (haftungsbeschränkt) <etherpad@pensec.it>2010-04-04 16:57:30 +0200
committerpenSec.IT UG (haftungsbeschränkt) <etherpad@pensec.it>2010-04-04 16:57:30 +0200
commit4f2ddecc37b8d42bd6dc95b7aaa48d7cd9cbdfee (patch)
tree9c5a805f060f1aa5a919fb02e2f415a9723d3172 /build
parent88d7621d96efb657c8a1f347d7c260bcd4d83a88 (diff)
downloadetherpad-4f2ddecc37b8d42bd6dc95b7aaa48d7cd9cbdfee.tar.gz
etherpad-4f2ddecc37b8d42bd6dc95b7aaa48d7cd9cbdfee.tar.bz2
etherpad-4f2ddecc37b8d42bd6dc95b7aaa48d7cd9cbdfee.zip
Removed unused code
Diffstat (limited to 'build')
-rwxr-xr-xbuild/apt/DEBIAN/postinst137
1 files changed, 0 insertions, 137 deletions
diff --git a/build/apt/DEBIAN/postinst b/build/apt/DEBIAN/postinst
index 6f595e0..f872508 100755
--- a/build/apt/DEBIAN/postinst
+++ b/build/apt/DEBIAN/postinst
@@ -125,143 +125,6 @@ configuration_property "database_password" "database-password" "DATABASE_PASSWOR
-# #####
-# #
-# # Install in production mode
-# #
-# IS_PRODUCTION="false"
-# db_input high "etherpad-%BRANCH%/is_production" || true
-# db_go
-#
-# db_get "etherpad-%BRANCH%/is_production"
-# if [ "" != "$RET" ]; then
-# IS_PRODUCTION="$RET"
-# fi
-#
-# apply_config "IS_PRODUCTION" "${IS_PRODUCTION}"
-# #
-# #####
-
-# #####
-# #
-# # Admin password
-# #
-# ADMIN_PASSWORD="password"
-# db_input high "etherpad-%BRANCH%/admin_password" || true
-# db_go
-#
-# db_get "etherpad-%BRANCH%/admin_password"
-# if [ "" != "$RET" ]; then
-# ADMIN_PASSWORD="$RET"
-# fi
-#
-# apply_config "ADMIN_PASSWORD" "${ADMIN_PASSWORD}"
-# #
-# #####
-
-# #####
-# #
-# # Application listen port
-# #
-# PORT="9000"
-# db_input high "etherpad-%BRANCH%/port" || true
-# db_go
-#
-# db_get "etherpad-%BRANCH%/port"
-# if [ "" != "$RET" ]; then
-# PORT="$RET"
-# fi
-#
-# apply_config "PORT" "${PORT}"
-# #
-# #####
-
-# #####
-# #
-# # MySQL Host
-# #
-# DATABASE_HOST="localhost"
-# db_input high "etherpad-%BRANCH%/database_host" || true
-# db_go
-#
-# db_get "etherpad-%BRANCH%/database_host"
-# if [ "" != "$RET" ]; then
-# DATABASE_HOST="$RET"
-# fi
-#
-# apply_config "DATABASE_HOST" "${DATABASE_HOST}"
-# #
-# #####
-
-# #####
-# #
-# # MySQL Port
-# #
-# DATABASE_PORT="3306"
-# db_input high "etherpad-%BRANCH%/database_port" || true
-# db_go
-#
-# db_get "etherpad-%BRANCH%/database_port"
-# if [ "" != "$RET" ]; then
-# DATABASE_PORT="$RET"
-# fi
-#
-# apply_config "DATABASE_PORT" "${DATABASE_PORT}"
-# #
-# #####
-
-# #####
-# #
-# # MySQL database name
-# #
-# DATABASE_NAME="etherpad"
-# db_input high "etherpad-%BRANCH%/database_name" || true
-# db_go
-#
-# db_get "etherpad-%BRANCH%/database_name"
-# if [ "" != "$RET" ]; then
-# DATABASE_NAME="$RET"
-# fi
-#
-# apply_config "DATABASE_NAME" "${DATABASE_NAME}"
-# #
-# #####
-
-# #####
-# #
-# # MySQL database username
-# #
-# DATABASE_USERNAME="etherpad"
-# db_input high "etherpad-%BRANCH%/database_username" || true
-# db_go
-#
-# db_get "etherpad-%BRANCH%/database_username"
-# if [ "" != "$RET" ]; then
-# DATABASE_USERNAME="$RET"
-# fi
-#
-# apply_config "DATABASE_USERNAME" "${DATABASE_USERNAME}"
-# #
-# #####
-
-# #####
-# #
-# # MySQL database password
-# #
-# DATABASE_PASSWORD="password"
-# db_input high "etherpad-%BRANCH%/database_password" || true
-# db_go
-#
-# db_get "etherpad-%BRANCH%/database_password"
-# if [ "" != "$RET" ]; then
-# DATABASE_PASSWORD="$RET"
-# fi
-#
-# apply_config "DATABASE_PASSWORD" "${DATABASE_PASSWORD}"
-# #
-# #####
-
-
#####
#
# MySQL-Autosetup should be discussed. Simply calling setup-myql-db.sh is