mail scripts.
[myplc.git] / guest.init
index 6ee0579..e95c34e 100755 (executable)
@@ -95,7 +95,7 @@ usage()
     echo "     reload          Regenerate configuration files"
     echo "     restart         Restart all PLC subsystems"
     echo "     checkpoint filename : Checkpoint the current state of MyPLC to filename"
-    echo "     restart filename : Restpore MyPLC state from filename"
+    echo "     restore filename : Restore MyPLC state from filename"
     echo "     steps           Displays ordered list of subsystems"
     echo
     echo "Steps:"
@@ -199,7 +199,7 @@ case "$command" in
        cpdir=$(mktemp -d tmp.XXXXXX)
        cd $cpdir
        mkdir -p ./etc/planetlab/
-       rsync -av /etc/planetlab ./etc/planetlab/
+       rsync -av /etc/planetlab/ ./etc/planetlab/
        /etc/plc.d/db checkpoint ./etc/planetlab/plc_db.checkpoint ./etc/planetlab/plc_drupal.checkpoint
        tar cjf $cpfile etc
        cd -
@@ -222,6 +222,11 @@ case "$command" in
        echo "${steps[@]}" >&4
        ;;
 
+    # for backwards compatibility
+    mount|umount|mountstatus)
+       echo "${command} not used within native myplc environment"
+       ;;
+
     *)
        usage >&3
        ;;