Updated machine setup

This commit is contained in:
Chad Nelson 2023-11-28 08:21:05 -07:00
parent 15218de075
commit 0530639193

View file

@ -34,12 +34,16 @@
(("init" rest ...) (("init" rest ...)
(init rest)) (init rest))
(("reinit") (("reinit")
(stop)
(clear-install) (clear-install)
(init)) (init))
(("start" rest ...) (("start" rest ...)
(start rest)) (start rest))
(("stop") (("stop")
(stop)) (stop))
(("rm")
(stop)
(clear-install))
(_ (_
(display "Please enter a valid command or -h for help.\n")))) (display "Please enter a valid command or -h for help.\n"))))