summaryrefslogtreecommitdiff
path: root/test/integration/targets/gathering_facts/library/dummy2
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/gathering_facts/library/dummy2')
-rwxr-xr-xtest/integration/targets/gathering_facts/library/dummy219
1 files changed, 0 insertions, 19 deletions
diff --git a/test/integration/targets/gathering_facts/library/dummy2 b/test/integration/targets/gathering_facts/library/dummy2
deleted file mode 100755
index 5a10e2dd..00000000
--- a/test/integration/targets/gathering_facts/library/dummy2
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-CANARY="${OUTPUT_DIR}/canary.txt"
-
-echo "$0" >> "${CANARY}"
-LINES=0
-
-until test "${LINES}" -gt 2
-do
- LINES=`wc -l "${CANARY}" |awk '{print $1}'`
- sleep 1
-done
-
-echo '{
- "changed": false,
- "ansible_facts": {
- "dummy": "$0"
- }
-}'