Hi there!
It seems as though the --keep_dst option is backwards, and looking at the
code:
undo_private () {
if [ $keep_dst -eq 1 ]; then
$SSH "root@$host" "rm -rf $VE_PRIVATE"
fi
undo_conf
}
That does not seem quite right to me; it should be -eq 0.
Am I reading this incorrectly?
--Jim