#!/usr/bin/python # # This file is part of Ansible # # Ansible is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # Ansible is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Ansible. If not, see . # ANSIBLE_METADATA = {'metadata_version': '1.0', 'status': ['deprecated'], 'supported_by': 'community'} DOCUMENTATION = """ --- module: junos_template version_added: "2.1" author: "Peter Sprygada (@privateip)" short_description: Manage configuration on remote devices running Juniper JUNOS description: - This module will load a candidate configuration from a template file onto a remote device running Junos. The module will return the differences in configuration if the diff option is specified on the Ansible command line deprecated: Deprecated in 2.2. Use M(junos_config) instead. extends_documentation_fragment: junos options: src: description: - The path to the config source. The source can be either a file with config or a template that will be merged during runtime. By default the task will search for the source file in role or playbook root folder in templates directory. required: true default: null backup: description: - When this argument is configured true, the module will backup the configuration from the node prior to making any changes. The backup file will be written to backup_{{ hostname }} in the root of the playbook directory. required: false default: false choices: ["true", "false"] confirm: description: - The C(confirm) argument will configure a time out value for the commit to be confirmed before it is automatically rolled back. If the C(confirm) argument is set to False, this argument is silently ignored. If the value for this argument is set to 0, the commit is confirmed immediately. required: false default: 0 comment: description: - The C(comment) argument specifies a text string to be used when committing the configuration. If the C(confirm) argument is set to False, this argument is silently ignored. required: false default: configured by junos_template action: description: - The C(action) argument specifies how the module will apply changes. required: false default: merge choices: ['merge', 'overwrite', 'replace'] version_added: "2.2" config_format: description: - The C(format) argument specifies the format of the configuration template specified in C(src). If the format argument is not specified, the module will attempt to infer the configuration format based of file extension. Files that end in I(xml) will set the format to xml. Files that end in I(set) will set the format to set and all other files will default the format to text. required: false default: null choices: ['text', 'xml', 'set'] requirements: - ncclient (>=v0.5.2) notes: - This module requires the netconf system service be enabled on the remote device being managed """ EXAMPLES = """ - junos_template: src: config.j2 comment: update system config - name: replace config hierarchy junos_template: src: config.j2 action: replace - name: overwrite the config junos_template: src: config.j2 action: overwrite """ from ansible.module_utils.basic import AnsibleModule from ansible.module_utils.junos import check_args, junos_argument_spec from ansible.module_utils.junos import get_configuration, load_config from ansible.module_utils.junos import commit_configuration, discard_changes, locked_config USE_PERSISTENT_CONNECTION = True DEFAULT_COMMENT = 'configured by junos_template' def main(): argument_spec = dict( src=dict(required=True, type='path'), confirm=dict(default=0, type='int'), comment=dict(default=DEFAULT_COMMENT), action=dict(default='merge', choices=['merge', 'overwrite', 'replace']), config_format=dict(choices=['text', 'set', 'xml'], default='text'), backup=dict(default=False, type='bool'), ) argument_spec.update(junos_argument_spec) module = AnsibleModule(argument_spec=argument_spec, supports_check_mode=True) warnings = list() check_args(module, warnings) result = {'changed': False, 'warnings': warnings} commit = not module.check_mode action = module.params['action'] src = module.params['src'] fmt = module.params['config_format'] if action == 'overwrite' and fmt == 'set': module.fail_json(msg="overwrite cannot be used when format is set per junos-pyez documentation") if module.params['backup']: reply = get_configuration(module, format='set') match = reply.find('.//configuration-set') if match is None: module.fail_json(msg='unable to retrieve device configuration') result['__backup__'] = str(match.text).strip() with locked_config(module): diff = load_config(module, src, warnings, action=action, format=fmt) if diff: if commit: commit_configuration(module) else: discard_changes(module) result['changed'] = True if module._diff: result['diff'] = {'prepared': diff} module.exit_json(**result) if __name__ == '__main__': main()