Server IP : 85.214.239.14 / Your IP : 18.119.28.173 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/ansible_collections/ansible/windows/plugins/modules/ |
Upload File : |
#!/usr/bin/python # -*- coding: utf-8 -*- # Copyright: (c) 2014, Paul Durivage <paul.durivage@rackspace.com>, and others # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) DOCUMENTATION = r''' --- module: win_get_url short_description: Downloads file from HTTP, HTTPS, or FTP to node description: - Downloads files from HTTP, HTTPS, or FTP to the remote server. - The remote server I(must) have direct access to the remote resource. - For non-Windows targets, use the M(ansible.builtin.get_url) module instead. options: url: description: - The full URL of a file to download. type: str required: yes dest: description: - The location to save the file at the URL. - Be sure to include a filename and extension as appropriate. type: path required: yes force: description: - If C(true), will download the file every time and replace the file if the contents change. If C(false), will only download the file if it does not exist or the remote file has been modified more recently than the local file. - This works by sending an http HEAD request to retrieve last modified time of the requested resource, so for this to work, the remote web server must support HEAD requests. type: bool default: yes checksum: description: - If a I(checksum) is passed to this parameter, the digest of the destination file will be calculated after it is downloaded to ensure its integrity and verify that the transfer completed successfully. - This option cannot be set with I(checksum_url). type: str checksum_algorithm: description: - Specifies the hashing algorithm used when calculating the checksum of the remote and destination file. type: str choices: - md5 - sha1 - sha256 - sha384 - sha512 default: sha1 checksum_url: description: - Specifies a URL that contains the checksum values for the resource at I(url). - Like C(checksum), this is used to verify the integrity of the remote transfer. - This option cannot be set with I(checksum). type: str url_method: aliases: - method url_timeout: aliases: - timeout # Following defined in the web_request fragment but the module contains deprecated aliases for backwards compatibility. url_username: description: - The username to use for authentication. - The alias I(user) and I(username) is deprecated and will be removed on the major release after C(2022-07-01). aliases: - user - username url_password: description: - The password for I(url_username). - The alias I(password) is deprecated and will be removed on the major release after C(2022-07-01). aliases: - password notes: - If your URL includes an escaped slash character (%2F) this module will convert it to a real slash. This is a result of the behaviour of the System.Uri class as described in L(the documentation,https://docs.microsoft.com/en-us/dotnet/framework/configure-apps/file-schema/network/schemesettings-element-uri-settings#remarks). extends_documentation_fragment: - ansible.windows.web_request seealso: - module: ansible.builtin.get_url - module: ansible.builtin.uri - module: ansible.windows.win_uri author: - Paul Durivage (@angstwad) - Takeshi Kuramochi (@tksarah) ''' EXAMPLES = r''' - name: Download earthrise.jpg to specified path ansible.windows.win_get_url: url: http://www.example.com/earthrise.jpg dest: C:\Users\RandomUser\earthrise.jpg - name: Download earthrise.jpg to specified path only if modified ansible.windows.win_get_url: url: http://www.example.com/earthrise.jpg dest: C:\Users\RandomUser\earthrise.jpg force: false - name: Download earthrise.jpg to specified path through a proxy server. ansible.windows.win_get_url: url: http://www.example.com/earthrise.jpg dest: C:\Users\RandomUser\earthrise.jpg proxy_url: http://10.0.0.1:8080 proxy_username: username proxy_password: password - name: Download file from FTP with authentication ansible.windows.win_get_url: url: ftp://server/file.txt dest: '%TEMP%\ftp-file.txt' url_username: ftp-user url_password: ftp-password - name: Download src with sha256 checksum url ansible.windows.win_get_url: url: http://www.example.com/earthrise.jpg dest: C:\temp\earthrise.jpg checksum_url: http://www.example.com/sha256sum.txt checksum_algorithm: sha256 force: True - name: Download src with sha256 checksum url ansible.windows.win_get_url: url: http://www.example.com/earthrise.jpg dest: C:\temp\earthrise.jpg checksum: a97e6837f60cec6da4491bab387296bbcd72bdba checksum_algorithm: sha1 force: True ''' RETURN = r''' dest: description: destination file/path returned: always type: str sample: C:\Users\RandomUser\earthrise.jpg checksum_dest: description: <algorithm> checksum of the file after the download returned: success and dest has been downloaded type: str sample: 6e642bb8dd5c2e027bf21dd923337cbb4214f827 checksum_src: description: <algorithm> checksum of the remote resource returned: force=true or dest did not exist type: str sample: 6e642bb8dd5c2e027bf21dd923337cbb4214f827 elapsed: description: The elapsed seconds between the start of poll and the end of the module. returned: always type: float sample: 2.1406487 size: description: size of the dest file returned: success type: int sample: 1220 url: description: requested url returned: always type: str sample: http://www.example.com/earthrise.jpg msg: description: Error message, or HTTP status message from web-server returned: always type: str sample: OK status_code: description: HTTP status code returned: always type: int sample: 200 '''