mkdir -p needed to make /etc
[myplc.git] / guest.init
index d725241..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:"
@@ -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
        ;;