|
3 | 3 | ### Comment out roles you don't need ### |
4 | 4 | vars: |
5 | 5 | summary: | |
6 | | - ############################################# |
| 6 | + ############################################# |
7 | 7 |
|
8 | | - Thank you for using |
9 | | - ___ _ |
10 | | - / _ \_ __ _____ _____ __ _ ___(_) ___ |
11 | | - / /_)/ '__/ _ \ \ / / _ \/ _` / __| |/ _ \ |
12 | | - / ___/| | | (_) \ V / __/ (_| \__ \ | (_) | |
13 | | - \/ |_| \___/ \_/ \___|\__,_|___/_|\___/ |
| 8 | + Thank you for using |
| 9 | + ___ _ |
| 10 | + / _ \_ __ _____ _____ __ _ ___(_) ___ |
| 11 | + / /_)/ '__/ _ \ \ / / _ \/ _` / __| |/ _ \ |
| 12 | + / ___/| | | (_) \ V / __/ (_| \__ \ | (_) | |
| 13 | + \/ |_| \___/ \_/ \___|\__,_|___/_|\___/ |
14 | 14 |
|
15 | | - For example usages see `Usages.md`. |
| 15 | + For example usages see `Usages.md`. |
16 | 16 |
|
17 | | - IF you like it, gimme a star! :) |
| 17 | + IF you like it, gimme a star! :) |
18 | 18 |
|
19 | | - ############################################# |
| 19 | + ############################################# |
20 | 20 |
|
21 | | - This ansible run ended up with below versions installed/upgraded: |
| 21 | + This ansible run ended up with below versions installed/upgraded: |
22 | 22 |
|
23 | 23 |
|
24 | | - {{ current_versions | to_nice_yaml }} |
| 24 | + {{ current_versions | to_nice_yaml }} |
25 | 25 |
|
26 | | - All above versions are added/updated in `{{ playbook_dir }}/../current-versions.yml` |
| 26 | + All above versions are added/updated in `{{ playbook_dir }}/../current-versions.yml` |
27 | 27 |
|
28 | | - See `README.md` for details on versioning. |
| 28 | + See `README.md` for details on versioning. |
29 | 29 | tasks: |
30 | | - - name: '[Init] Check sudo password' |
| 30 | + - name: "[Init] Check sudo password" |
31 | 31 | ansible.builtin.command: echo "sudo password is correct" |
32 | 32 | become: true |
33 | 33 | changed_when: false |
|
43 | 43 | - name: "[Init] Ensure `current-versions.yml` file" |
44 | 44 | ansible.builtin.file: |
45 | 45 | path: "{{ playbook_dir }}/../current-versions.yml" |
46 | | - mode: '0644' |
| 46 | + mode: "0644" |
47 | 47 | state: touch |
48 | 48 | tags: |
49 | 49 | - always |
50 | | - - name: '[Software] Include software role' |
| 50 | + - name: "[Software] Include software role" |
51 | 51 | ansible.builtin.import_role: |
52 | 52 | name: software |
53 | | - - name: '[Config] Include config role' |
| 53 | + - name: "[Config] Include config role" |
54 | 54 | ansible.builtin.import_role: |
55 | 55 | name: config |
56 | 56 | - name: "[Summary] Show detailed info" |
|
0 commit comments