2 # Copyright (c) 2017 Intel Corporation
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
8 # http://www.apache.org/licenses/LICENSE-2.0
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
19 short_description: write a string to a file
21 - write a string to a file without using temp files
23 path: path to write to
25 mode: python file mode (w, wb, a, ab)
30 module = AnsibleModule(
32 'path': {'required': True, 'type': 'path', 'aliases': ['dest']},
33 'val': {'required': True, 'type': 'str'},
34 'mode': {'required': False, 'default': "w", 'type': 'str',
35 'choices': ['w', 'wb', 'a', 'ab']}}
37 params = module.params
41 with open(path, mode) as file_object:
42 file_object.write(val)
44 module.exit_json(changed=True)
47 # <<INCLUDE_ANSIBLE_MODULE_COMMON>>
48 from ansible.module_utils.basic import * # noqa
50 if __name__ == '__main__':