Merge "Add common openstack opertation scenarios: network"
[yardstick.git] / ansible / library / parse_shell_file.py
1 #!/usr/bin/env python
2 # Copyright (c) 2017 Intel Corporation
3 #
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
7 #
8 #      http://www.apache.org/licenses/LICENSE-2.0
9 #
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.
15
16 DOCUMENTATION = '''
17 ---
18 module: write_string
19 short_description: write a string to a file
20 description:
21     - write a string to a file without using temp files
22 options:
23   path: path to write to
24   val: string to write
25   mode: python file mode (w, wb, a, ab)
26 '''
27
28
29 def main():
30     module = AnsibleModule(
31         argument_spec={
32             'path': {'required': True, 'type': 'path', 'aliases': ['dest']},
33             'fact_name': {'required': True},
34         }
35     )
36     params = module.params
37     path = params['path']
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})
43
44
45 # <<INCLUDE_ANSIBLE_MODULE_COMMON>>
46 from ansible.module_utils.basic import *  # noqa
47
48 if __name__ == '__main__':
49     main()