We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e94c21d commit 3ad6e1eCopy full SHA for 3ad6e1e
slides/content/2_playbook_basics/2_playbook.html
@@ -65,15 +65,15 @@
65
apt: # Modul
66
name: apache2 # Modul Parameter
67
state: latest # Modul Parameter
68
- notify: restart httpd # Sende das Notify zum Handler
+ notify: restart_httpd # Sende das Notify zum Handler
69
70
- name: Ensure latest index.html file is present
71
copy:
72
src: files/index.html
73
dest: /var/www/html
74
75
handlers:
76
- - name: Restart httpd # Handler Name
+ - name: restart_httpd # Handler Name
77
service: # Modul
78
79
state: restarted # Modul Parameter
0 commit comments