raw now returns changed: true (#17112)

for consistency w/ shell/command/script "non-idempotent" modules.

Updated tests, changelog.
This commit is contained in:
Matt Davis 2016-08-16 20:39:23 -07:00 committed by GitHub
parent 81d7e132f9
commit e0bdb502e3
5 changed files with 16 additions and 7 deletions

View file

@ -40,4 +40,6 @@ class ActionModule(ActionBase):
executable = self._task.args.get('executable', False)
result.update(self._low_level_execute_command(self._task.args.get('_raw_params'), executable=executable))
result['changed'] = True
return result