File: report_controller.yml

package info (click to toggle)
python-mitogen 0.3.36-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,708 kB
  • sloc: python: 24,457; sh: 198; makefile: 74; perl: 19; ansic: 18
file content (19 lines) | stat: -rw-r--r-- 1,155 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- name: Report controller parameters
  hosts: test-targets[0]
  gather_facts: false
  tasks:
    - debug:
        msg:
          - ${ANSIBLE_STRATEGY}:      "{{ lookup('env', 'ANSIBLE_STRATEGY') | default('<unset>') }}"
          - ${USER}:                  "{{ lookup('env', 'USER') | default('<unset>') }}"
          - $(groups):                "{{ lookup('pipe', 'groups') }}"
          - $(pwd):                   "{{ lookup('pipe', 'pwd') }}"
          - $(whoami):                "{{ lookup('pipe', 'whoami') }}"
          - ansible_inventory_sources:        "{{ ansible_inventory_sources | default('<unset>') }}"
          - ansible_run_tags:         "{{ ansible_run_tags | default('<unset>') }}"
          - ansible_playbook_python:  "{{ ansible_playbook_python | default('<unset>') }}"
          - ansible_skip_tags:        "{{ ansible_skip_tags | default('<unset>') }}"
          - ansible_version.full:     "{{ ansible_version.full | default('<unset>') }}"
          - is_mitogen:               "{{ is_mitogen | default('<unset>') }}"
          - playbook_dir:             "{{ playbook_dir | default('<unset>') }}"
      delegate_to: localhost