diff --git a/bin/vhost-mysql-db-add.sh b/bin/vhost-mysql-db-add.sh index a868495..105a31f 100755 --- a/bin/vhost-mysql-db-add.sh +++ b/bin/vhost-mysql-db-add.sh @@ -10,12 +10,12 @@ source $(dirname $0)/vhost.sh help() { thisfilename=$(basename -- "$0") - echo "Creates default MySQL database and db user for specified virtualhost." + echo "Creates MySQL database and db user for specified virtualhost." echo "" echo "usage: $thisfilename -d [OPTIONS]" echo "" echo " -h Print this help." - echo " -d Domain name of VirtualHost to remove." + echo " -d Domain name of VirtualHost to add db for." echo " -u Username for accessing the database. Optional, autogenerated if none specified." echo " -p Password for username. Optional, random password generated if none specified." echo " -w Write db info to /srv/www/domain/.my.cnf and create include in" @@ -27,7 +27,7 @@ help() echo " the shell username & the virtualhost name." echo " e.g. for virtualost example.com the db name will be 'exampledotcom' and the" echo " username will be examplec@example.com." - echo " It is highly recommended to use either the -s or -v option if you don't use -p." + echo " It is highly recommended to use either the -w or -v option if you don't use -p." } vhost:getoptions "$@" diff --git a/bin/vhost-mysql-db-del.sh b/bin/vhost-mysql-db-del.sh index 126b900..2b50042 100755 --- a/bin/vhost-mysql-db-del.sh +++ b/bin/vhost-mysql-db-del.sh @@ -10,12 +10,12 @@ source $(dirname $0)/vhost.sh help() { thisfilename=$(basename -- "$0") - echo "Remove MySQL database and default db user for the specified virtualhost." + echo "Remove MySQL database and associated db user for the specified virtualhost." echo "" echo "usage: $thisfilename -d " echo "" echo " -h Print this help." - echo " -d Domain name of VirtualHost to MySQL db for." + echo " -d Domain name of VirtualHost to delete MySQL db for." exit }