mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 10:14:19 +01:00
When using a --mem=<dir> the memdir must be removed to assure
afresh start
This commit is contained in:
parent
44959af241
commit
c0da93cd97
1 changed files with 10 additions and 0 deletions
|
@ -2025,6 +2025,16 @@ sub remove_stale_vardir () {
|
|||
mtr_verbose("Removing $opt_vardir/");
|
||||
rmtree("$opt_vardir/");
|
||||
}
|
||||
|
||||
if ( $opt_mem )
|
||||
{
|
||||
# A symlink from var/ to $opt_mem will be set up
|
||||
# remove the $opt_mem dir to assure the symlink
|
||||
# won't point at an old directory
|
||||
mtr_verbose("Removing $opt_mem");
|
||||
rmtree($opt_mem);
|
||||
}
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue