Skip to content
Snippets Groups Projects
Commit c8ebca79 authored by micah's avatar micah :speech_balloon:
Browse files

mysql tried to remove a tmpfile that didn't exist, fixed check for this

parent d568f305
Branches
Tags
No related merge requests found
...@@ -3,6 +3,7 @@ version 0.9.4 -- unreleased ...@@ -3,6 +3,7 @@ version 0.9.4 -- unreleased
mysql, pgsql, svn: fixed inversed vsname emptyness check mysql, pgsql, svn: fixed inversed vsname emptyness check
mysql: mysql:
. Fixed improper use of $vuserhome (Debian: #351083) . Fixed improper use of $vuserhome (Debian: #351083)
. Fixed erroneous removal of tmpfile when it didn't exit
lib changes lib changes
vserver: vserver:
. init_vservers: fixed Debian bug #351083 (improper readlink syntax) . init_vservers: fixed Debian bug #351083 (improper readlink syntax)
......
...@@ -277,7 +277,7 @@ fi ...@@ -277,7 +277,7 @@ fi
fi fi
# clean up tmp config file # clean up tmp config file
if [ "$dbusername" != "" ] if [ "$dbusername" != "" -a "$dbpassword" != "" ]
then then
## clean up tmp config file ## clean up tmp config file
debug "rm $mycnf" debug "rm $mycnf"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment