ansible/test/integration/targets/json_cleanup/library/bad_json
Brian Coca 43300e2279
module output is only json objects (#73765)
* module output is only json objects

 remove json lists as they are not valid from modules
 fixes #73744
2021-03-03 15:11:18 -05:00

11 lines
194 B
Bash

#!/usr/bin/env bash
set -eu
echo 'this stuff should be ignored'
echo '[ looks like a json list]'
echo '{"changed": false, "failed": false, "msg": "good json response"}'
echo 'moar garbage'