additional course material RH294
Student User
2020-02-19 7bb947466ebfdcd8dce306c4fa30bdd8afd07279
1
2
3
4
5
6
7
8
9
10
11
12
13
---
- name: sample register play
  hosts: server
  become: false
  tasks:
    - name: "Get OS version string"
      shell: cal
      register: shellout
    - name: "output shellout"
      debug:
        var: shellout['stdout']
    - debug:
        var: shellout