summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/gathering_facts/library/facts_one
blob: c74ab9a7df9a134d1299bdb6c011040e10c25fb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh

echo '{
    "changed": false,
    "ansible_facts": {
        "factsone": "from facts_one module",
        "common_fact": "also from facts_one module",
		"common_dict_fact": {
			"key_one": "from facts_one",
			"key_two": "from facts_one"
		},
		"common_list_fact": [
			"one",
			"three",
			"five"
		],
		"common_list_fact2": [
			"one",
			"two",
			"three",
			"five",
			"five"
		]
    }
}'