additional course material RH294
Olaf Bohlen
2020-02-19 08669995dd66a7051d2fc222fec02a0bc71c1dff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
- name: Introduce roles
  hosts: server
  become: true
  pre_tasks:
    - name: pre_tasks run here
      debug:
        msg: 'this runs before the roles'
  roles:
    - prep_server
 
  post_tasks:
    - name: post_tasks run here
      debug:
        msg: 'this runs after the roles'
    - name: retrieve content from port 80
      uri:
        url: "http://localhost:80/index.html"
        return_content: yes
      when: port == 'http'