Skip to content

Commit 660ef8c

Browse files
Merge pull request #266 from puzzle/psc_fqdn
add info about fqdn
2 parents 139918b + 9222b14 commit 660ef8c

File tree

1 file changed

+37
-10
lines changed

1 file changed

+37
-10
lines changed

slides/ansible-techlab/puzzle-demo.md

Lines changed: 37 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,12 @@
2828

2929
## Nice to meet you
3030

31-
<!-- <div class="people" style="color: black;">
32-
<div>
33-
<div class="img" style="background-image: url(https://www.puzzle.ch/img/2024/06/Schmid_Philippe.jpg?w=900&h=900&fit=crop&fm=webp&q=90&sharp=4&s=f27e83a00061d8aa6266f3092b1b289c)" />
34-
</div> -->
35-
36-
### Simon Schweizer
37-
schweizer@puzzle.ch
31+
<div class="people">
32+
![](https://www.puzzle.ch/img/2024/06/Schmid_Philippe.jpg?w=540&h=540&fit=crop&fm=webp&q=90&sharp=4&blur=0&s=0dba932bfbf51f204090244a70472110)
3833

39-
### Reto Kupferschmid
40-
kupferschmid@puzzle.ch
34+
### Philippe Schmid
35+
pschmid@puzzle.ch
4136

42-
<!-- pschmid@puzzle.ch -->
4337
</div>
4438

4539

@@ -339,7 +333,38 @@ Without it I can do nothing.
339333
- Ansible 13.0 --> Ansible-Core 2.20 + Collections v13 (Current)
340334
- Ansible 14.0 --> Ansible-Core 2.21 + Collections v14 (In development, unreleased)
341335

336+
***
337+
338+
## FQDN
339+
340+
- Fully Qualified Collection Name
341+
- from Ansible 2.10 on
342+
- copy -> ansible.builtin.copy
343+
344+
<!-- .slide: class="master-content" > -->
345+
***
346+
347+
### FQDN Example
348+
349+
old:
350+
```yaml [2]
351+
- name: copy a file
352+
file:
353+
path: /home/ansible/myfile
354+
```
355+
342356
<!-- .slide: class="master-content" > -->
357+
***
358+
359+
### FQDN Example
360+
361+
new:
362+
```yaml [2]
363+
- name: copy a file
364+
ansible.builtin.file:
365+
path: /home/ansible/myfile
366+
```
367+
343368
<!-- .slide: class="master-content" > -->
344369
----
345370
@@ -459,6 +484,7 @@ What do we use on cmdline?
459484
- `ansible-doc`
460485
- `ansible-vault` (secrets management)
461486
- `ansible-config`
487+
462488
<!-- .slide: class="master-content" > -->
463489
464490
***
@@ -470,6 +496,7 @@ What do we use on cmdline?
470496
- `ansible-lint` (syntax check)
471497
- `ansible-pull`
472498
- `ansible-navigator`
499+
473500
<!-- .slide: class="master-content" > -->
474501
475502
***

0 commit comments

Comments
 (0)