mysql: Create directories on the host.
authorMatthijs Kooijman <matthijs@stdin.nl>
Mon, 5 Jan 2009 15:11:23 +0000 (16:11 +0100)
committerMatthijs Kooijman <matthijs@stdin.nl>
Mon, 5 Jan 2009 15:11:23 +0000 (16:11 +0100)
The previous commit broke the directory creation: It was prefixed with
$vroot and also executed inside the vserver.

handlers/mysql.in

index f79a0b2b9b235c3bfeb4fd2e83bdc9757f1ff544..316c109d76fa526e0ad04a5e076f7654c04c473e 100644 (file)
@@ -66,8 +66,8 @@ fi
 hotdir="$backupdir/hotcopy"
 dumpdir="$backupdir/sqldump"
 
-[ "$sqldump" == "no" -o -d $vroot$dumpdir ] || $vexec mkdir -p $vroot$dumpdir
-[ "$hotcopy" == "no" -o -d $vroot$hotdir ] || $vexec mkdir -p $vroot$hotdir
+[ "$sqldump" == "no" -o -d $vroot$dumpdir ] || mkdir -p $vroot$dumpdir
+[ "$hotcopy" == "no" -o -d $vroot$hotdir ] || mkdir -p $vroot$hotdir
 
 #######################################################################
 ## AUTHENTICATION