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 'fact_name': {'required': True},
36 params = module.params
38 fact_name = params['fact_name']
39 with open(path) as file_object:
40 script = file_object.read()
41 variables = dict(l.split('=') for l in shlex.split(script) if '=' in l)
42 module.exit_json(changed=True, ansible_facts={fact_name: variables})
45 # <<INCLUDE_ANSIBLE_MODULE_COMMON>>
46 from ansible.module_utils.basic import * # noqa
48 if __name__ == '__main__':