Skip to content
Snippets Groups Projects
Commit 3552179b authored by Andreas Dilger's avatar Andreas Dilger
Browse files

Make the cleanup and remount scripts consistent in accepting "NAME" as

the basename of the config script, so you can do:

NAME=lov sh llmount.sh
NAME=lov sh llmountcleanup.sh

and it will work.

Also fix a bug in llmount.sh, which I think would have prevented the
XML config file from being regenerated properly.
parent ca6c1e0c
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ NAME=${NAME:-local}
config=$NAME.xml
mkconfig=./$NAME.sh
if [ ! -f $local.xml -o $mkconfig -nt $local.xml ]; then
if [ ! -f $config -o $mkconfig -nt $config ]; then
$mkconfig $config || exit 1
fi
......
#!/bin/sh
LCONF=${LCONF:-../utils/lconf}
NAME=${NAME:-local}
if [ ! -f local.xml ]; then
./local.sh
config=$NAME.xml
mkconfig=./$NAME.sh
if [ ! -f $config -o $mkconfig -nt $config ]; then
$mkconfig $config || exit 1
fi
${LCONF} --cleanup --dump /tmp/debug local.xml
${LCONF} --cleanup --dump /tmp/debug $config
#!/bin/sh
LCONF=../utils/lconf
LCONF=${LCONF:-../utils/lconf}
NAME=${NAME:-local}
if [ ! -f local.xml ]; then
./local.sh
config=$NAME.xml
mkconfig=./$NAME.sh
if [ ! -f $config -o $mkconfig -nt $config ]; then
$mkconfig $config || exit 1
fi
${LCONF} --gdb local.xml
${LCONF} --gdb $config || exit 2
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment