16 lines
392 B
EmacsLisp
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
|