additional course material RH294
Olaf Bohlen
2019-12-04 96eda8797a3510ea39108406fdbedd1d0a1d47e0
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'