2014-06-19 20:48:45 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# (c) 2014, Paul Durivage <paul.durivage@rackspace.com>, and others
|
|
|
|
#
|
|
|
|
# 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
# this is a windows documentation stub. actual code lives in the .ps1
|
|
|
|
# file of the same name
|
|
|
|
|
2014-06-18 22:04:51 +02:00
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: win_get_url
|
|
|
|
version_added: "1.7"
|
|
|
|
short_description: Fetches a file from a given URL
|
|
|
|
description:
|
|
|
|
- Fetches a file from a URL and saves to locally
|
|
|
|
options:
|
|
|
|
url:
|
|
|
|
description:
|
|
|
|
- The full URL of a file to download
|
|
|
|
required: true
|
|
|
|
default: null
|
|
|
|
aliases: []
|
|
|
|
dest:
|
|
|
|
description:
|
|
|
|
- The absolute path of the location to save the file at the URL. Be sure to include a filename and extension as appropriate.
|
|
|
|
required: false
|
|
|
|
default: yes
|
|
|
|
aliases: []
|
|
|
|
author: Paul Durivage
|
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
|
|
|
# Downloading a JPEG and saving it to a file with the ansible command.
|
|
|
|
# Note the "dest" is quoted rather instead of escaping the backslashes
|
|
|
|
$ ansible -i hosts -c winrm -m win_get_url -a "url=http://www.example.com/earthrise.jpg dest='C:\Users\Administrator\earthrise.jpg'" all
|
|
|
|
|
|
|
|
# Playbook example
|
|
|
|
- name: Download earthrise.jpg to 'C:\Users\RandomUser\earthrise.jpg'
|
|
|
|
win_get_url:
|
|
|
|
url: 'http://www.example.com/earthrise.jpg'
|
|
|
|
dest: 'C:\Users\RandomUser\earthrise.jpg'
|
2014-06-18 23:37:20 +02:00
|
|
|
'''
|