403Webshell
Server IP : 80.87.202.40  /  Your IP : 216.73.216.169
Web Server : Apache
System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64
User : bitrix ( 600)
PHP Version : 8.2.27
Disable Function : NONE
MySQL : OFF |  cURL : ON |  WGET : ON |  Perl : ON |  Python : OFF |  Sudo : ON |  Pkexec : ON
Directory :  /lib/python3.11/site-packages/ansible/modules/__pycache__/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /lib/python3.11/site-packages/ansible/modules/__pycache__/get_url.cpython-311.opt-1.pyc
�

���c�h����ddlmZmZmZeZdZdZdZddl	Z	ddl
Z
ddlZddlZddl
Z
ddlZddlmZddlmZddlmZdd	lmZmZd
�Z		dd�Zd�Zd�Zd�Zedkre��dSdS)�)�absolute_import�division�print_functionaW#
---
module: get_url
short_description: Downloads files 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.
     - By default, if an environment variable C(<protocol>_proxy) is set on
       the target host, requests will be sent through that proxy. This
       behaviour can be overridden by setting a variable for this task
       (see R(setting the environment,playbooks_environment)),
       or by using the use_proxy option.
     - HTTP redirects can redirect from HTTP to HTTPS so you should be sure that
       your proxy environment for both protocols is correct.
     - From Ansible 2.4 when run with C(--check), it will do a HEAD request to validate the URL but
       will not download the entire file or verify it against hashes and will report incorrect changed status.
     - For Windows targets, use the M(ansible.windows.win_get_url) module instead.
version_added: '0.6'
options:
  ciphers:
    description:
      - SSL/TLS Ciphers to use for the request
      - 'When a list is provided, all ciphers are joined in order with C(:)'
      - See the L(OpenSSL Cipher List Format,https://www.openssl.org/docs/manmaster/man1/openssl-ciphers.html#CIPHER-LIST-FORMAT)
        for more details.
      - The available ciphers is dependent on the Python and OpenSSL/LibreSSL versions
    type: list
    elements: str
    version_added: '2.14'
  decompress:
    description:
      - Whether to attempt to decompress gzip content-encoded responses
    type: bool
    default: true
    version_added: '2.14'
  url:
    description:
      - HTTP, HTTPS, or FTP URL in the form (http|https|ftp)://[user[:pass]]@host.domain[:port]/path
    type: str
    required: true
  dest:
    description:
      - Absolute path of where to download the file to.
      - If C(dest) is a directory, either the server provided filename or, if
        none provided, the base name of the URL on the remote server will be
        used. If a directory, C(force) has no effect.
      - If C(dest) is a directory, the file will always be downloaded
        (regardless of the C(force) and C(checksum) option), but
        replaced only if the contents changed.
    type: path
    required: true
  tmp_dest:
    description:
      - Absolute path of where temporary file is downloaded to.
      - When run on Ansible 2.5 or greater, path defaults to ansible's remote_tmp setting
      - When run on Ansible prior to 2.5, it defaults to C(TMPDIR), C(TEMP) or C(TMP) env variables or a platform specific value.
      - U(https://docs.python.org/3/library/tempfile.html#tempfile.tempdir)
    type: path
    version_added: '2.1'
  force:
    description:
      - If C(true) and C(dest) is not a directory, will download the file every
        time and replace the file if the contents change. If C(false), the file
        will only be downloaded if the destination does not exist. Generally
        should be C(true) only for small local files.
      - Prior to 0.6, this module behaved as if C(true) was the default.
    type: bool
    default: no
    version_added: '0.7'
  backup:
    description:
      - Create a backup file including the timestamp information so you can get
        the original file back if you somehow clobbered it incorrectly.
    type: bool
    default: no
    version_added: '2.1'
  checksum:
    description:
      - 'If a 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.
        Format: <algorithm>:<checksum|url>, e.g. checksum="sha256:D98291AC[...]B6DC7B97",
        checksum="sha256:http://example.com/path/sha256sum.txt"'
      - If you worry about portability, only the sha1 algorithm is available
        on all platforms and python versions.
      - The third party hashlib library can be installed for access to additional algorithms.
      - Additionally, if a checksum is passed to this parameter, and the file exist under
        the C(dest) location, the I(destination_checksum) would be calculated, and if
        checksum equals I(destination_checksum), the file download would be skipped
        (unless C(force) is true). If the checksum does not equal I(destination_checksum),
        the destination file is deleted.
    type: str
    default: ''
    version_added: "2.0"
  use_proxy:
    description:
      - if C(false), it will not use a proxy, even if one is defined in
        an environment variable on the target hosts.
    type: bool
    default: yes
  validate_certs:
    description:
      - If C(false), SSL certificates will not be validated.
      - This should only be used on personally controlled sites using self-signed certificates.
    type: bool
    default: yes
  timeout:
    description:
      - Timeout in seconds for URL request.
    type: int
    default: 10
    version_added: '1.8'
  headers:
    description:
        - Add custom HTTP headers to a request in hash/dict format.
        - The hash/dict format was added in Ansible 2.6.
        - Previous versions used a C("key:value,key:value") string format.
        - The C("key:value,key:value") string format is deprecated and has been removed in version 2.10.
    type: dict
    version_added: '2.0'
  url_username:
    description:
      - The username for use in HTTP basic authentication.
      - This parameter can be used without C(url_password) for sites that allow empty passwords.
      - Since version 2.8 you can also use the C(username) alias for this option.
    type: str
    aliases: ['username']
    version_added: '1.6'
  url_password:
    description:
        - The password for use in HTTP basic authentication.
        - If the C(url_username) parameter is not specified, the C(url_password) parameter will not be used.
        - Since version 2.8 you can also use the 'password' alias for this option.
    type: str
    aliases: ['password']
    version_added: '1.6'
  force_basic_auth:
    description:
      - Force the sending of the Basic authentication header upon initial request.
      - httplib2, the library used by the uri module only sends authentication information when a webservice
        responds to an initial request with a 401 status. Since some basic auth services do not properly
        send a 401, logins will fail.
    type: bool
    default: no
    version_added: '2.0'
  client_cert:
    description:
      - PEM formatted certificate chain file to be used for SSL client authentication.
      - This file can also include the key as well, and if the key is included, C(client_key) is not required.
    type: path
    version_added: '2.4'
  client_key:
    description:
      - PEM formatted file that contains your private key to be used for SSL client authentication.
      - If C(client_cert) contains both the certificate and key, this option is not required.
    type: path
    version_added: '2.4'
  http_agent:
    description:
      - Header to identify as, generally appears in web server logs.
    type: str
    default: ansible-httpget
  unredirected_headers:
    description:
      - A list of header names that will not be sent on subsequent redirected requests. This list is case
        insensitive. By default all headers will be redirected. In some cases it may be beneficial to list
        headers such as C(Authorization) here to avoid potential credential exposure.
    default: []
    type: list
    elements: str
    version_added: '2.12'
  use_gssapi:
    description:
      - Use GSSAPI to perform the authentication, typically this is for Kerberos or Kerberos through Negotiate
        authentication.
      - Requires the Python library L(gssapi,https://github.com/pythongssapi/python-gssapi) to be installed.
      - Credentials for GSSAPI can be specified with I(url_username)/I(url_password) or with the GSSAPI env var
        C(KRB5CCNAME) that specified a custom Kerberos credential cache.
      - NTLM authentication is I(not) supported even if the GSSAPI mech for NTLM has been installed.
    type: bool
    default: no
    version_added: '2.11'
  use_netrc:
    description:
      - Determining whether to use credentials from ``~/.netrc`` file
      - By default .netrc is used with Basic authentication headers
      - When set to False, .netrc credentials are ignored
    type: bool
    default: true
    version_added: '2.14'
# informational: requirements for nodes
extends_documentation_fragment:
    - files
    - action_common_attributes
attributes:
    check_mode:
        details: the changed status will reflect comparison to an empty source file
        support: partial
    diff_mode:
        support: none
    platform:
        platforms: posix
notes:
     - For Windows targets, use the M(ansible.windows.win_get_url) module instead.
seealso:
- module: ansible.builtin.uri
- module: ansible.windows.win_get_url
author:
- Jan-Piet Mens (@jpmens)
a�
- name: Download foo.conf
  ansible.builtin.get_url:
    url: http://example.com/path/file.conf
    dest: /etc/foo.conf
    mode: '0440'

- name: Download file and force basic auth
  ansible.builtin.get_url:
    url: http://example.com/path/file.conf
    dest: /etc/foo.conf
    force_basic_auth: yes

- name: Download file with custom HTTP headers
  ansible.builtin.get_url:
    url: http://example.com/path/file.conf
    dest: /etc/foo.conf
    headers:
      key1: one
      key2: two

- name: Download file with check (sha256)
  ansible.builtin.get_url:
    url: http://example.com/path/file.conf
    dest: /etc/foo.conf
    checksum: sha256:b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c

- name: Download file with check (md5)
  ansible.builtin.get_url:
    url: http://example.com/path/file.conf
    dest: /etc/foo.conf
    checksum: md5:66dffb5228a211e61d6d7ef4a86f5758

- name: Download file with checksum url (sha256)
  ansible.builtin.get_url:
    url: http://example.com/path/file.conf
    dest: /etc/foo.conf
    checksum: sha256:http://example.com/path/sha256sum.txt

- name: Download file from a file path
  ansible.builtin.get_url:
    url: file:///tmp/afile.txt
    dest: /tmp/afilecopy.txt

- name: < Fetch file that requires authentication.
        username/password only available since 2.8, in older versions you need to use url_username/url_password
  ansible.builtin.get_url:
    url: http://example.com/path/file.conf
    dest: /etc/foo.conf
    username: bar
    password: '{{ mysecret }}'
a�
backup_file:
    description: name of backup file created after download
    returned: changed and if backup=yes
    type: str
    sample: /path/to/file.txt.2015-02-12@22:09~
checksum_dest:
    description: sha1 checksum of the file after copy
    returned: success
    type: str
    sample: 6e642bb8dd5c2e027bf21dd923337cbb4214f827
checksum_src:
    description: sha1 checksum of the file
    returned: success
    type: str
    sample: 6e642bb8dd5c2e027bf21dd923337cbb4214f827
dest:
    description: destination file/path
    returned: success
    type: str
    sample: /path/to/file.txt
elapsed:
    description: The number of seconds that elapsed while performing the download
    returned: always
    type: int
    sample: 23
gid:
    description: group id of the file
    returned: success
    type: int
    sample: 100
group:
    description: group of the file
    returned: success
    type: str
    sample: "httpd"
md5sum:
    description: md5 checksum of the file after download
    returned: when supported
    type: str
    sample: "2a5aeecc61dc98c4d780b14b330e3282"
mode:
    description: permissions of the target
    returned: success
    type: str
    sample: "0644"
msg:
    description: the HTTP message from the request
    returned: always
    type: str
    sample: OK (unknown bytes)
owner:
    description: owner of the file
    returned: success
    type: str
    sample: httpd
secontext:
    description: the SELinux security context of the file
    returned: success
    type: str
    sample: unconfined_u:object_r:user_tmp_t:s0
size:
    description: size of the target
    returned: success
    type: int
    sample: 1220
src:
    description: source file used after download
    returned: always
    type: str
    sample: /tmp/tmpAdFLdV
state:
    description: state of the target
    returned: success
    type: str
    sample: file
status_code:
    description: the HTTP status code from the request
    returned: always
    type: int
    sample: 200
uid:
    description: owner id of the file, after execution
    returned: success
    type: int
    sample: 100
url:
    description: the actual URL used for the request
    returned: always
    type: str
    sample: https://www.ansible.com/
N)�
AnsibleModule)�urlsplit)�	to_native)�	fetch_url�url_argument_specc�z�tj�t|��d��}|dkrdS|S)N��z
index.html)�os�path�basenamer)�url�fns  �</usr/lib/python3.11/site-packages/ansible/modules/get_url.py�url_filenamers5��	��	�	�(�3�-�-��*�	+�	+�B�	�R�x�x��|�
�I��
r
�GETTc�P�tj���}t||||||||	|
|||
���\}}tj���|z
j}|ddkr5|�||d|�dd��|d|���|ddkr|�|d|||�	��|dd
krz|�d��se|�d��r)|�dd���d
��s'|�d|d|d|||���|rvtj	�
|��}|sTtj	�|��r|�d|z|���n"|�d|z|���n|j}tj|���\}}tj|d��}	t!j||��nd#t$$rW}tj|��|�dt)|��z|t+j�����Yd}~nd}~wwxYw|���|���||fS)zr
    Download data from the url and store in a temporary file.

    Return (tempfile, info about the request)
    )
�	use_proxy�force�
last_mod_time�timeout�headers�method�unredirected_headers�
decompress�ciphers�	use_netrc�statusi0F�msgr
)r�dest�changedr$�status_code�elapsed���)r$rr%r(��zfile:/zftp:/�OK�Request failed)r$r'�responserr%r(z'%s is a file but should be a directory.)r$r(z%s directory does not exist.)�dir�wbz+failed to create temporary content file: %s)r$r(�	exceptionN)�datetime�utcnowr	�seconds�	exit_json�get�	fail_json�
startswithrr�isdir�exists�tmpdir�tempfile�mkstemp�fdopen�shutil�copyfileobj�	Exception�remover�	traceback�
format_exc�close)�modulerr%rrrrr�tmp_destrrr r!r"�start�rsp�infor(�tmp_dest_is_dir�fd�tempname�f�es                       r�url_getrO�s7��
��$�$�&�&�E��&�#��%�Wd�nu�@G�PV�/C�PZ�dk�xA�B�B�B�I�C��� �'�'�)�)�E�1�:�G��H�~�������S�t�U�����PR�@S�@S�ae�fn�ao�zA��	B�	B�	B��H�~�������T�%�[�c��g��N�N�N��H�~����S�^�^�H�%=�%=��s�~�~�V]�G^�G^��cg�ck�ck�lq�su�cv�cv�dB�dB�CG�dH�dH�����-�4��>�TX�Y^�T_�eh�os�~E��	F�	F�	F��	!��'�-�-��1�1���	a��w�~�~�h�'�'�
a�� � �%N�QY�%Y�cj� �k�k�k�k�� � �%C�h�%N�X_� �`�`�`���=���#��1�1�1�L�B��
�	�"�d���A�N���3��"�"�"�"���N�N�N�
�	�(�������J�Y�WX�\�\�Y�cj�v�wK�wM�wM��	N�	N�	N�	N�	N�	N�	N�	N�����N�����G�G�I�I�I��I�I�K�K�K��T�>�s�H�
I9�"A
I4�4I9c��d}d}d|vrS|d}tj||��}|r4|�d��}tj�|��}|S)z�
    Extracts a filename from the given dict of HTTP headers.

    Looks for the content-disposition header and applies a regex.
    Returns the filename if successful, else None.zattachment; ?filename="?([^"]+)Nzcontent-disposition�)�re�match�grouprrr)r�cont_disp_regex�res�	cont_disprSs     r�extract_filename_from_headersrX�sf��8�O�
�C���'�'��1�2�	����)�4�4���	(��+�+�a�.�.�C��'�"�"�3�'�'�C��Jrc�2�d}t|��j|vS)zI
    Returns True if checksum value has supported URL scheme, else False.)�http�https�ftp�file)r�scheme)�checksum�supported_schemess  r�is_urlra�s!��9���H���$�(9�9�9rc��&�t��}dg|dd<dg|dd<|�tdd���td	d���td
d���tdd
���tdd���td���td	���tddg���td
d���tdd���td
d������t|dd���}|jd}|jd}|jd}|jd}|jd}|jd}|jd}|jd}	|jd}
|jd }|jd!}|jd"}
|jd#}tddd|d$|�%��}t
j�|��}d}|�r>	|�d&d'��\}}n#t$r|j
dWd(d)i|��YnwxYwt|���r�|}t||||||||	|
||
|�*��\}}t|��5}d+�|D��}ddd��n#1swxYwYtj|��g}t|���&t!|��d'krIt!|d$�����d'kr|�|d$�&f��n�|D]�}|�d,d'��}t!|��d-krd|d'�d.��r|d'd'd�|d'<|�|d$|d'�d/��f�����&fd0�|D��D]}|}nd}|�|�
d1�&�d2|�d3��4��t)jd5d
|�����}	t/|d6��n#t$r|j
dWd(d7i|��YnwxYw|s�t
j�|��r�d}|s$|d
kr|�||��}||krd}|s_|r]|s[|�|j|�8��}|�|d��|d9<|d9r|jdWd(d:i|��|jdWd(d;i|��t
j�|��}t<j�|��}|rd}t<j� ��} |j!rd<nd=}!t||||||||	|
|!|||
|�>��\}"}#t<j� ��| z
j"|d?<|"|d@<|rKtG|#���&�&st|#d���&t
j�$|�&��}||d<t
j�|"��s1tj|"��|j
dWdA|#dB|#d(dC�|��tj%|"t
j&��s&tj|"��|j
dWd(dD|"zi|��|�'|"��|dE<t
j�|��r�tj%|t
j(��s&tj|"��|j
dWd(dF|zi|��tj%|t
j&��s&tj|"��|j
dWd(dG|zi|��|�'|��|dH<n�t
j�t
j�)|����sCtj|"��|j
dWd(dIt
j�)|��zi|��tj%t
j�)|��t
j(��sCtj|"��|j
dWd(dFt
j�)|��zi|��|j!rot
j�|"��rtj|"��dH|vp|dE|dHk|d9<|jdWd(|#�*d(d
��i|��d}$|dE|dHkr�	|r4t
j�|��r|�+|��}$|�,|"||jdJ�K��n�#tZ$rt}%t
j�|"��rtj|"��|j
dWdL|"�dM|�dNt]|%����t_j0��dO�|��Yd}%~%nd}%~%wwxYwd|d9<n8d|d9<t
j�|"��rtj|"��|d
krI|�||��}||kr-tj|��|j
dWd(dP|�dQ|�dR|�dS�i|��|�|j|�8��}|�||d9��|d9<	|�1|��|dT<n#t$rd|dT<YnwxYw|$r|$|dU<|jdW|#�*d(d
��|#�*dBd
��dV�|��dS)XN�username�url_username�aliases�password�url_password�strT)�type�requiredr�boolF)ri�defaultr
�intr�dict)ri�list)ri�elementsrl)rirp)rr%�backupr_rrrFrr r!r")�
argument_spec�add_file_common_args�supports_check_moderr%rqrr_rrrrFrr r!r"r)r&�
checksum_dest�checksum_srcr%r(r�:rQr$zAThe checksum parameter has to be in format <algorithm>:<checksum>)rr!r"c�8�g|]}|�d����S)�
)�rstrip)�.0�lines  r�
<listcomp>zmain.<locals>.<listcomp>s$��9�9�9�t����T�*�*�9�9�9r� r)r~�*z./c3�.�K�|]\}}|�k�|V��dS)N�)r{�srM�filenames   �r�	<genexpr>zmain.<locals>.<genexpr>0s+�����H�H���A�!�x�-�-�!�-�-�-�-�H�Hrz$Unable to find a checksum for file 'z' in '�')r$z\W+�zThe checksum format is invalid)rr&z/file already exists but file attributes changedzfile already exists�HEADr)rr r!r"r(�srcr,r#)r$r'r-zSource %s is not readablervzDestination %s is not writablezDestination %s is not readableruzDestination %s does not exist�
unsafe_writes)r�zfailed to copy z to z: )r$r0zThe checksum for z did not match z	; it was �.�md5sum�backup_file)r$r'r�)2r
�updaternr�paramsrrr8�split�
ValueErrorr6rarO�openrAr�len�appendr7�lstriprR�sub�lowerrmr9�digest_from_file�load_file_common_arguments�set_fs_attributes_if_differentr4�getmtimer1�utcfromtimestampr2�
check_moder3rX�join�access�R_OK�sha1�W_OK�dirnamer5�backup_local�atomic_mover@rrBrC�md5)'rrrErr%rqrr_rrrrFrr r!r"�result�dest_is_dirr�	algorithm�checksum_url�checksum_tmpsrc�
checksum_inforM�lines�checksum_mapr|�parts�cksum�checksum_mismatch�destination_checksum�	file_args�mtimerGr�tmpsrcrIr�rNr�s'                                      @r�mainr��s

���%�'�'�M�1;�|�M�.�!�)�,�0:�|�M�.�!�)�,�����e�d�+�+�+�
�v��
-�
-�
-����/�/�/��5�"�-�-�-��%��,�,�,��&�!�!�!��6�"�"�"�!�v��r�J�J�J��V�T�2�2�2��&�5�1�1�1��F�D�1�1�1������#�!� �	���F��-��
�C��=�� �D�
�]�8�
$�F��M�'�"�E��}�Z�(�H��
�k�*�I��m�I�&�G��m�I�&�G��}�Z�(�H�!�=�)?�@����|�,�J��m�I�&�G��
�k�*�I�
����
���
���F��'�-�-��%�%�K��M��3M�	p�"*�.�.��a�"8�"8��I�x�x���	p�	p�	p��F��o�o�!d�o�hn�o�o�o�o�o�	p�����(���%	s�#�L�-4�V�\�4�QZ�\i�kp�ry�|C�EM�J^�ho�|E�.F�.F�.F�*�O�]��o�&�&�
:�!�9�9�q�9�9�9��
:�
:�
:�
:�
:�
:�
:�
:�
:�
:�
:����
:�
:�
:�
:��I�o�&�&�&��L�#�C�(�(�H��5�z�z�Q���3�u�Q�x�~�~�'7�'7�#8�#8�A�#=�#=��#�#�U�1�X�x�$8�9�9�9�9�"�	O�	O�D� �J�J�s�A�.�.�E��5�z�z�Q��� ��8�.�.�{�;�;�4�',�Q�x����|�E�!�H�%�+�+�U�1�X�u�Q�x���t�7L�7L�,M�N�N�N��I�H�H�H�,�H�H�H�
 �
 �� ��������� � � �Zb�Zb�Zb�dp�dp�dp�%q� �r�r�r��6�&�"�h�/�/�5�5�7�7��	M���"�������	M�	M�	M��F��L�L�!A�L�V�L�L�L�L�L�	M������2�7�>�>�$�/�/��!���	)��R���#)�#:�#:�4��#K�#K� ��/�/�/�$(�!��	B��	B�*;�	B��9�9�&�-�d�9�S�S�I� &� E� E�i�QV� W� W�F�9���i� �
b� �� �a�a�%V�a�Z`�a�a�a��F��A�A�!6�A�&�A�A�A��� � ��&�&�� �)�:�:�5�A�A�
��	��E�
��$�$�&�&�E��(�
3�V�V�e�F��6�3��i���w�X_�ai�kq�0D�Q[�el�yB�C�C�C�L�F�D�!�*�1�1�3�3�e�;�D�F�9���F�5�M�
��0��6�6���	1�$�D��K�0�0�H��w�|�|�D�(�+�+����v���7�>�>�&�!�!�k�
�	�&�������j�-�4��>�TX�Y^�T_�j�j�ci�j�j�j�
�9�V�R�W�%�%�O�
�	�&�������N�N�8�F�C�N�v�N�N�N�#�[�[��0�0�F�>��
�w�~�~�d���g��y��r�w�'�'�	V��I�f�����F��U�U�!A�T�!J�U�f�U�U�U��y��r�w�'�'�	V��I�f�����F��U�U�!A�T�!J�U�f�U�U�U�"(�+�+�d�"3�"3������w�~�~�b�g�o�o�d�3�3�4�4�	f��I�f�����F��e�e�!@�B�G�O�O�TX�DY�DY�!Z�e�^d�e�e�e��y������.�.���8�8�	g��I�f�����F��f�f�!A�R�W�_�_�UY�EZ�EZ�![�f�_e�f�f�f�
��<�
�7�>�>�&�!�!�	��I�f����,�F�:�O�#�N�3�v�o�7N�N�	�y�����;�;�T�X�X�e�R�0�0�;�F�;�;�;��K�
�n����!8�8�8�		I��
<��7�>�>�$�'�'�<�"(�"5�"5�d�";�";�K����v�t�6�=��;Y��Z�Z�Z�Z���	I�	I�	I��w�~�~�f�%�%�
"��	�&�!�!�!��F��
I�
I�&�&�&�$�$�$�PY�Z[�P\�P\�P\�!]�'0�';�'=�'=�
I�
I�AG�
I�
I�
I�
I�
I�
I�
I�
I�����	I����
!��y���!��y��
�7�>�>�&�!�!�	��I�f�����2�~�~�%�6�6�t�Y�G�G���+�+�+��I�d�O�O�O��F��
H�
H�
H�W[�W[�W[�]e�]e�]e�g{�g{�g{�!|�
H�AG�
H�
H�
H��1�1�&�-�d�1�K�K�I��=�=�i��PY�IZ�[�[�F�9�� �!�:�:�d�+�+��x����� � � ���x���� �����,� +��}���F��[����%��,�,�$�(�(�8�R�:P�:P�[�[�TZ�[�[�[�[�[sb�!G;�;H�H�
I2�2I6�9I6�.O?�?P�P�Ad � 
f�*A*f�f�*j�j�j�__main__)rNr
rNTNT)�
__future__rrrri�
__metaclass__�
DOCUMENTATION�EXAMPLES�RETURNr1rrRr>r;rB�ansible.module_utils.basicr�+ansible.module_utils.six.moves.urllib.parser�ansible.module_utils._textr�ansible.module_utils.urlsr	r
rrOrXrar��__name__r�rr�<module>r�sT��A�@�@�@�@�@�@�@�@�@��
�Q�
�f3��j[
��z����	�	�	�	�	�	�	�	�
�
�
�
���������4�4�4�4�4�4�@�@�@�@�@�@�0�0�0�0�0�0�B�B�B�B�B�B�B�B����KO�59�-�-�-�-�`���(:�:�:�i\�i\�i\�X�z����D�F�F�F�F�F��r

Youez - 2016 - github.com/yon3zu
LinuXploit