├── lib └── .gitkeep ├── static └── img │ ├── sysadmin_preview.png │ ├── question_marker_01.png │ ├── questions_counter_01.png │ ├── toc_questions_counter_01.png │ └── sub-chapter_questions_counter_01.png ├── LICENSE.md └── .github ├── CONTRIBUTING.md └── CODE_OF_CONDUCT.md /lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/sysadmin_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trimstray/test-your-sysadmin-skills/HEAD/static/img/sysadmin_preview.png -------------------------------------------------------------------------------- /static/img/question_marker_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trimstray/test-your-sysadmin-skills/HEAD/static/img/question_marker_01.png -------------------------------------------------------------------------------- /static/img/questions_counter_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trimstray/test-your-sysadmin-skills/HEAD/static/img/questions_counter_01.png -------------------------------------------------------------------------------- /static/img/toc_questions_counter_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trimstray/test-your-sysadmin-skills/HEAD/static/img/toc_questions_counter_01.png -------------------------------------------------------------------------------- /static/img/sub-chapter_questions_counter_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trimstray/test-your-sysadmin-skills/HEAD/static/img/sub-chapter_questions_counter_01.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 trimstray 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | > _A real community, however, exists only when its members interact in a meaningful way that deepens their understanding of each other and leads to learning._ 4 | 5 | If you would like to support this project, have an interesting idea how to improve the operation of this tool, or if you found some errors - fork this, add your fixes, and add a pull request of your branch to the **master branch**. 6 | 7 | ## Using the issue tracker 8 | 9 | The [issue tracker](https://github.com/trimstray/test-your-sysadmin-skills/issues) is 10 | the preferred channel for bug reports, features requests and submitting pull requests, but please respect the following restrictions: 11 | 12 | * Please **do not** use the issue tracker for personal support requests (use 13 | [Stack Overflow](https://stackoverflow.com) or IRC) 14 | 15 | * Please **do not** derail or troll issues. Keep the discussion on topic and 16 | respect the opinions of others 17 | 18 | ## Signature of commit 19 | 20 | Moving forward all commits to this project must include a "signed-off-by" line indicating the name and email address of the contributor signing off on the change. To enable signatures add the following lines to `.git/hooks/prepare-commit-msg` : 21 | 22 | ``` 23 | SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/- signed-off-by: \1/p') 24 | grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" 25 | ``` 26 | 27 | ## Project improvements 28 | 29 | Remember about this rules: 30 | 31 | #### Remove marker from question without answer 32 | 33 | Example: 34 | 35 |
36 |
38 |
45 |
47 |
54 |
56 |
63 |
65 |