From: Eric Bollengier Date: Mon, 21 Sep 2009 20:42:23 +0000 (+0200) Subject: tweak drop_bacula_xxx script ouput X-Git-Tag: Release-7.0.0~2616^2~28 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=01205302fd5ed8b397924aadd42249dc959db2dc;p=bacula%2Fbacula tweak drop_bacula_xxx script ouput --- diff --git a/bacula/src/cats/drop_bacula_database.in b/bacula/src/cats/drop_bacula_database.in index 89dd7c8c88..d927621f2b 100755 --- a/bacula/src/cats/drop_bacula_database.in +++ b/bacula/src/cats/drop_bacula_database.in @@ -7,7 +7,7 @@ if test xsqlite = x@DB_TYPE@ -o xsqlite3 = x@DB_TYPE@ ; then @scriptdir@/drop_@DB_TYPE@_database $* else if test xmysql = x@DB_TYPE@ ; then - echo "Making MySQL database" + echo "Dropping MySQL database" @scriptdir@/drop_mysql_database $* else @scriptdir@/drop_postgresql_database $* diff --git a/bacula/src/cats/drop_bacula_tables.in b/bacula/src/cats/drop_bacula_tables.in index 6ae1003a34..50ee20f9db 100755 --- a/bacula/src/cats/drop_bacula_tables.in +++ b/bacula/src/cats/drop_bacula_tables.in @@ -8,7 +8,7 @@ if test xsqlite = x@DB_TYPE@ -o xsqlite3 = x@DB_TYPE@ ; then echo "Dropped SQLite tables" else if test xmysql = x@DB_TYPE@ ; then - echo "Making MySQL tables" + echo "Dropping MySQL tables" @scriptdir@/drop_mysql_tables $* echo "Dropped MySQL tables" else