mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
Merge branch 'jjshoe-devel' into devel
This commit is contained in:
@@ -204,6 +204,8 @@ def main():
|
|||||||
os.unlink(dest)
|
os.unlink(dest)
|
||||||
open(dest, 'w').close()
|
open(dest, 'w').close()
|
||||||
if validate:
|
if validate:
|
||||||
|
if "%s" not in validate:
|
||||||
|
module.fail_json(msg="validate must contain %%s: %s" % (validate))
|
||||||
(rc,out,err) = module.run_command(validate % src)
|
(rc,out,err) = module.run_command(validate % src)
|
||||||
if rc != 0:
|
if rc != 0:
|
||||||
module.fail_json(msg="failed to validate: rc:%s error:%s" % (rc,err))
|
module.fail_json(msg="failed to validate: rc:%s error:%s" % (rc,err))
|
||||||
|
|||||||
@@ -154,6 +154,8 @@ def write_changes(module,lines,dest):
|
|||||||
validate = module.params.get('validate', None)
|
validate = module.params.get('validate', None)
|
||||||
valid = not validate
|
valid = not validate
|
||||||
if validate:
|
if validate:
|
||||||
|
if "%s" not in validate:
|
||||||
|
module.fail_json(msg="validate must contain %%s: %s" % (validate))
|
||||||
(rc, out, err) = module.run_command(validate % tmpfile)
|
(rc, out, err) = module.run_command(validate % tmpfile)
|
||||||
valid = rc == 0
|
valid = rc == 0
|
||||||
if rc != 0:
|
if rc != 0:
|
||||||
|
|||||||
@@ -90,6 +90,8 @@ def write_changes(module,contents,dest):
|
|||||||
validate = module.params.get('validate', None)
|
validate = module.params.get('validate', None)
|
||||||
valid = not validate
|
valid = not validate
|
||||||
if validate:
|
if validate:
|
||||||
|
if "%s" not in validate:
|
||||||
|
module.fail_json(msg="validate must contain %%s: %s" % (validate))
|
||||||
(rc, out, err) = module.run_command(validate % tmpfile)
|
(rc, out, err) = module.run_command(validate % tmpfile)
|
||||||
valid = rc == 0
|
valid = rc == 0
|
||||||
if rc != 0:
|
if rc != 0:
|
||||||
|
|||||||
Reference in New Issue
Block a user