diff options
author | monty@mishka.local <> | 2005-04-16 04:35:54 +0300 |
---|---|---|
committer | monty@mishka.local <> | 2005-04-16 04:35:54 +0300 |
commit | c8170b349f8a7e071ef0005098ddf893138f6a25 (patch) | |
tree | 4432c91a9b8ee8482b369f2a066a5e9a9d87b399 /support-files | |
parent | f0fa1a6f396e7b0fdd3094019a128acf39c52f90 (diff) | |
parent | 2b322f36d8e458927845e81e6585a61e8dfff038 (diff) | |
download | mariadb-git-c8170b349f8a7e071ef0005098ddf893138f6a25.tar.gz |
Merge with 4.1
Diffstat (limited to 'support-files')
-rw-r--r-- | support-files/mysql.server.sh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/support-files/mysql.server.sh b/support-files/mysql.server.sh index 2735ad91c6e..a03e870004d 100644 --- a/support-files/mysql.server.sh +++ b/support-files/mysql.server.sh @@ -66,8 +66,14 @@ lsb_functions="/lib/lsb/init-functions" if test -f $lsb_functions ; then source $lsb_functions else - alias log_success_msg="echo \ SUCCESS! " - alias log_failure_msg="echo \ ERROR! " + log_success_msg() + { + echo " SUCCESS! $@" + } + log_failure_msg() + { + echo " ERROR! $@" + } fi PATH=/sbin:/usr/sbin:/bin:/usr/bin:$basedir/bin |