Author: justi9
Date: 2010-01-08 10:27:06 -0500 (Fri, 08 Jan 2010)
New Revision: 3767
Modified:
mgmt/trunk/mint/bin/mint-database
Log:
Clarify that configure modify's the config of the server, not a database object
Modified: mgmt/trunk/mint/bin/mint-database
===================================================================
--- mgmt/trunk/mint/bin/mint-database 2010-01-06 20:43:02 UTC (rev 3766)
+++ mgmt/trunk/mint/bin/mint-database 2010-01-08 15:27:06 UTC (rev 3767)
@@ -138,14 +138,14 @@
check-environment
if test -f $pghbaconf && run "grep ${dbname} ${pghbaconf}";
then
- echo "The database appears to have been configured already."
+ echo "The database server appears to have been configured
already."
exit 1
fi
local i_stopped_postgres=""
if run "/sbin/service postgresql status"; then
- echo "The database is running. To proceed with configuration, I need to
stop it"
+ echo "The database server is running. To proceed with configuration, I
need to stop it"
echo "(I'll start it again after I'm done)."
if confirmed; then
@@ -155,7 +155,7 @@
fi
test -d /var/lib/pgsql/data || {
- echo "The database is not initialized. To proceed, I need to initialize
it."
+ echo "The database server is not initialized. To proceed, I need to
initialize it."
if confirmed; then
initdb
@@ -168,7 +168,7 @@
run "/sbin/service postgresql start"
fi
- echo "The database is configured. You can now run 'mint-database
create'."
+ echo "The database server is configured. You can now run 'mint-database
create'."
# chkconfig stuff ?
;;
@@ -195,7 +195,7 @@
echo "Usage: mint-database COMMAND"
echo "Commands:"
echo " status Check the database"
- echo " configure Modify the database configuration"
+ echo " configure Modify the database server configuration"
echo " create Create the mint user and database"
echo " destroy Discard the mint user, database, and all data"
exit 1
Show replies by date