Files
linuxplus/11-ssh-service-quiz.el
T
2026-04-21 15:13:54 -04:00

16 lines
392 B
EmacsLisp

;;; 11-ssh-service-quiz.el --- ssh-service-quiz
(defun ssh-service-quiz ()
(interactive)
(linuxplus-start-quiz
'ssh-service-lesson
'("Does start run now?"
"Does enable run at boot?"
"Does disable stop running service?"
"Use start if enabled but stopped?"
"Are enable and start the same?")
'(y y n y n)
"*SSH Quiz*"))
;;; 11-ssh-service-quiz.el ends here