-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtraining_example.yml
24 lines (22 loc) · 1.06 KB
/
training_example.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
- training:
- id: EXAMPLE
title: Example questions
overview: >
These are two example questions that demonstrate how to define training content for CyLMS. Please check how the questions are displayed after they are converted to a SCORM package and uploaded to Moodle.
questions:
- id: EXAMPLE-01
body: What is the name of the Linux distribution used by this server? Indicate only the name, without version or architecture, e.g., CentOS.
answer: Ubuntu
hints:
- The directory <code>/etc/</code> contains various files with information regarding a Linux distribution.
- One of the most relevant files has a name ending in "release".
- <code>$ cat /etc/*-release</code>
- id: EXAMPLE-02
body: What is the name of the account you are logged in as?
choices: root, admin, guest01, trainee01
answer: trainee01
hints:
- The account name is typically the same with the name of the user's home directory.
- "Have you ever asked yourself: Who am I?"
- <code>$ whoami</code>