Wed May 31 14:11:30 PDT 2006
- Previous message: [Slony1-commit] By cbbrowne: Fix to poll_cluster query (in NG test suite)...
- Next message: [Slony1-commit] By cbbrowne: Note *why* store listen should no longer be necessary...
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Log Message:
-----------
Fix quoting errors in mkslonconf
Modified Files:
--------------
slony1-engine/tools:
mkslonconf.sh (r1.1 -> r1.2)
-------------- next part --------------
Index: mkslonconf.sh
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/tools/mkslonconf.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -Ltools/mkslonconf.sh -Ltools/mkslonconf.sh -u -w -r1.1 -r1.2
--- tools/mkslonconf.sh
+++ tools/mkslonconf.sh
@@ -160,19 +160,19 @@
echo "config file $conffile already exists."
echo "Do you want to (Overwrite) it or (Skip) it (Anything else aborts) [Overwrite|Skip]?"
read nl
- case nl in
+ case $nl in
(Overwrite)
echo "overwriting..."
- create_conf_file $node $dsn
+ create_conf_file $node "$dsn"
(Skip)
echo "skipping..."
(*)
- echo "invalid input - aborting..."
+ echo "invalid input - [$nl] aborting..."
exit -1
esac
else
echo "creating conf file for new node $node with DSN [$dsn]"
- create_conf_file $node $dsn
+ create_conf_file $node "$dsn"
fi
done
rm $queryoutput
- Previous message: [Slony1-commit] By cbbrowne: Fix to poll_cluster query (in NG test suite)...
- Next message: [Slony1-commit] By cbbrowne: Note *why* store listen should no longer be necessary...
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Slony1-commit mailing list