17 lines
505 B
EmacsLisp
17 lines
505 B
EmacsLisp
;;; 31-auth-log-quiz.el --- auth-log-quiz
|
|
|
|
(defun auth-log-quiz ()
|
|
"Quiz for authentication log knowledge."
|
|
(interactive)
|
|
(linuxplus-start-quiz
|
|
'auth-log-lesson
|
|
'("Is /var/log/secure used on Red Hat systems?"
|
|
"Is /var/log/auth.log used on Debian-based systems?"
|
|
"Does grep help filter log entries?"
|
|
"Is /var/log/messages used for authentication logs?"
|
|
"Can failed logins be found using grep fail?")
|
|
'(y y y n y)
|
|
"*Auth Log Quiz*"))
|
|
|
|
;;; 31-auth-log-quiz.el ends here
|