mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
41 lines
908 B
YAML
41 lines
908 B
YAML
|
# -*- coding: utf-8 -*-
|
||
|
# Copyright (c) Alexei Znamensky (russoz@gmail.com)
|
||
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
---
|
||
|
- id: simple run
|
||
|
output:
|
||
|
ansible_facts:
|
||
|
facter:
|
||
|
a: 1
|
||
|
b: 2
|
||
|
c: 3
|
||
|
run_command_calls:
|
||
|
- command: [/testbin/facter, --json]
|
||
|
environ: &env-def {check_rc: true}
|
||
|
rc: 0
|
||
|
out: >
|
||
|
{ "a": 1, "b": 2, "c": 3 }
|
||
|
err: ""
|
||
|
- id: with args
|
||
|
input:
|
||
|
arguments:
|
||
|
- -p
|
||
|
- system_uptime
|
||
|
- timezone
|
||
|
- is_virtual
|
||
|
output:
|
||
|
ansible_facts:
|
||
|
facter:
|
||
|
a: 1
|
||
|
b: 2
|
||
|
c: 3
|
||
|
run_command_calls:
|
||
|
- command: [/testbin/facter, --json, -p, system_uptime, timezone, is_virtual]
|
||
|
environ: *env-def
|
||
|
rc: 0
|
||
|
out: >
|
||
|
{ "a": 1, "b": 2, "c": 3 }
|
||
|
err: ""
|