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__/pip.cpython-311.pyc
�

���cw���ddlmZmZmZeZdZdZdZddl	Z	ddl
Z
ddlZddlZddl
Z
ddlZddlZddlZddlmZdZ	ddlmZdZn#e$rd	Zej��ZYnwxYwdd
lmZddlmZmZmZddlm Z dd
l!m"Z"ddd�Z#e
j$d��Z%e
j&e
j'e
j(e
j)e
j*e
j+e
j&d�Z,d�Z-d�Z.d�Z/d�Z0d�Z1d�Z2d"d�Z3d�Z4d�Z5d#d�Z6d�Z7Gd�d��Z8d �Z9e:d!kre9��dSdS)$�)�absolute_import�division�print_functiona�
---
module: pip
short_description: Manages Python library dependencies
description:
     - "Manage Python library dependencies. To use this module, one of the following keys is required: C(name)
       or C(requirements)."
version_added: "0.7"
options:
  name:
    description:
      - The name of a Python library to install or the url(bzr+,hg+,git+,svn+) of the remote package.
      - This can be a list (since 2.2) and contain version specifiers (since 2.7).
    type: list
    elements: str
  version:
    description:
      - The version number to install of the Python library specified in the I(name) parameter.
    type: str
  requirements:
    description:
      - The path to a pip requirements file, which should be local to the remote system.
        File can be specified as a relative path if using the chdir option.
    type: str
  virtualenv:
    description:
      - An optional path to a I(virtualenv) directory to install into.
        It cannot be specified together with the 'executable' parameter
        (added in 2.1).
        If the virtualenv does not exist, it will be created before installing
        packages. The optional virtualenv_site_packages, virtualenv_command,
        and virtualenv_python options affect the creation of the virtualenv.
    type: path
  virtualenv_site_packages:
    description:
      - Whether the virtual environment will inherit packages from the
        global site-packages directory.  Note that if this setting is
        changed on an already existing virtual environment it will not
        have any effect, the environment must be deleted and newly
        created.
    type: bool
    default: "no"
    version_added: "1.0"
  virtualenv_command:
    description:
      - The command or a pathname to the command to create the virtual
        environment with. For example C(pyvenv), C(virtualenv),
        C(virtualenv2), C(~/bin/virtualenv), C(/usr/local/bin/virtualenv).
    type: path
    default: virtualenv
    version_added: "1.1"
  virtualenv_python:
    description:
      - The Python executable used for creating the virtual environment.
        For example C(python3.5), C(python2.7). When not specified, the
        Python version used to run the ansible module is used. This parameter
        should not be used when C(virtualenv_command) is using C(pyvenv) or
        the C(-m venv) module.
    type: str
    version_added: "2.0"
  state:
    description:
      - The state of module
      - The 'forcereinstall' option is only available in Ansible 2.1 and above.
    type: str
    choices: [ absent, forcereinstall, latest, present ]
    default: present
  extra_args:
    description:
      - Extra arguments passed to pip.
    type: str
    version_added: "1.0"
  editable:
    description:
      - Pass the editable flag.
    type: bool
    default: 'no'
    version_added: "2.0"
  chdir:
    description:
      - cd into this directory before running the command
    type: path
    version_added: "1.3"
  executable:
    description:
      - The explicit executable or pathname for the pip executable,
        if different from the Ansible Python interpreter. For
        example C(pip3.3), if there are both Python 2.7 and 3.3 installations
        in the system and you want to run pip for the Python 3.3 installation.
      - Mutually exclusive with I(virtualenv) (added in 2.1).
      - Does not affect the Ansible Python interpreter.
      - The setuptools package must be installed for both the Ansible Python interpreter
        and for the version of Python specified by this option.
    type: path
    version_added: "1.3"
  umask:
    description:
      - The system umask to apply before installing the pip package. This is
        useful, for example, when installing on systems that have a very
        restrictive umask by default (e.g., "0077") and you want to pip install
        packages which are to be used by all users. Note that this requires you
        to specify desired umask mode as an octal string, (e.g., "0022").
    type: str
    version_added: "2.1"
extends_documentation_fragment:
  -  action_common_attributes
attributes:
    check_mode:
        support: full
    diff_mode:
        support: none
    platform:
        platforms: posix
notes:
   - The virtualenv (U(http://www.virtualenv.org/)) must be
     installed on the remote host if the virtualenv parameter is specified and
     the virtualenv needs to be created.
   - Although it executes using the Ansible Python interpreter, the pip module shells out to
     run the actual pip command, so it can use any pip version you specify with I(executable).
     By default, it uses the pip version for the Ansible Python interpreter. For example, pip3 on python 3, and pip2 or pip on python 2.
   - The interpreter used by Ansible
     (see R(ansible_python_interpreter, ansible_python_interpreter))
     requires the setuptools package, regardless of the version of pip set with
     the I(executable) option.
requirements:
- pip
- virtualenv
- setuptools
author:
- Matt Wright (@mattupstate)
ad
- name: Install bottle python package
  ansible.builtin.pip:
    name: bottle

- name: Install bottle python package on version 0.11
  ansible.builtin.pip:
    name: bottle==0.11

- name: Install bottle python package with version specifiers
  ansible.builtin.pip:
    name: bottle>0.10,<0.20,!=0.11

- name: Install multi python packages with version specifiers
  ansible.builtin.pip:
    name:
      - django>1.11.0,<1.12.0
      - bottle>0.10,<0.20,!=0.11

- name: Install python package using a proxy
  ansible.builtin.pip:
    name: six
  environment:
    http_proxy: 'http://127.0.0.1:8080'
    https_proxy: 'https://127.0.0.1:8080'

# You do not have to supply '-e' option in extra_args
- name: Install MyApp using one of the remote protocols (bzr+,hg+,git+,svn+)
  ansible.builtin.pip:
    name: svn+http://myrepo/svn/MyApp#egg=MyApp

- name: Install MyApp using one of the remote protocols (bzr+,hg+,git+)
  ansible.builtin.pip:
    name: git+http://myrepo/app/MyApp

- name: Install MyApp from local tarball
  ansible.builtin.pip:
    name: file:///path/to/MyApp.tar.gz

- name: Install bottle into the specified (virtualenv), inheriting none of the globally installed modules
  ansible.builtin.pip:
    name: bottle
    virtualenv: /my_app/venv

- name: Install bottle into the specified (virtualenv), inheriting globally installed modules
  ansible.builtin.pip:
    name: bottle
    virtualenv: /my_app/venv
    virtualenv_site_packages: yes

- name: Install bottle into the specified (virtualenv), using Python 2.7
  ansible.builtin.pip:
    name: bottle
    virtualenv: /my_app/venv
    virtualenv_command: virtualenv-2.7

- name: Install bottle within a user home directory
  ansible.builtin.pip:
    name: bottle
    extra_args: --user

- name: Install specified python requirements
  ansible.builtin.pip:
    requirements: /my_app/requirements.txt

- name: Install specified python requirements in indicated (virtualenv)
  ansible.builtin.pip:
    requirements: /my_app/requirements.txt
    virtualenv: /my_app/venv

- name: Install specified python requirements and custom Index URL
  ansible.builtin.pip:
    requirements: /my_app/requirements.txt
    extra_args: -i https://example.com/pypi/simple

- name: Install specified python requirements offline from a local directory with downloaded packages
  ansible.builtin.pip:
    requirements: /my_app/requirements.txt
    extra_args: "--no-index --find-links=file:///my_downloaded_packages_dir"

- name: Install bottle for Python 3.3 specifically, using the 'pip3.3' executable
  ansible.builtin.pip:
    name: bottle
    executable: pip3.3

- name: Install bottle, forcing reinstallation if it's already installed
  ansible.builtin.pip:
    name: bottle
    state: forcereinstall

- name: Install bottle while ensuring the umask is 0022 (to ensure other users can use it)
  ansible.builtin.pip:
    name: bottle
    umask: "0022"
  become: True
a�
cmd:
  description: pip command used by the module
  returned: success
  type: str
  sample: pip2 install ansible six
name:
  description: list of python modules targeted by pip
  returned: success
  type: list
  sample: ['ansible', 'six']
requirements:
  description: Path to the requirements file
  returned: success, if a requirements file was provided
  type: str
  sample: "/srv/git/project/requirements.txt"
version:
  description: Version of the package specified in 'name'
  returned: success, if a name and version were provided
  type: str
  sample: "2.5.1"
virtualenv:
  description: Path to the virtualenv
  returned: success, if a virtualenv path was provided
  type: str
  sample: "/tmp/virtualenv"
N)�LooseVersion)�RequirementTF��	to_native)�
AnsibleModule�
is_executable�missing_required_lib)�get_best_parsable_locale)�PY3z0import setuptools; print(setuptools.__version__)zJimport pkg_resources; print(pkg_resources.get_distribution("pip").version)��
setuptools�pipz(svn|git|hg|bzr)\+)z>=z<=�>�<�==z!=z~=c�6�tjt|��S)z(Test whether a name is a vcs url or not.)�re�match�_VCS_RE��names �8/usr/lib/python3.11/site-packages/ansible/modules/pip.py�_is_vcs_urlr1s��
�8�G�T�"�"�"�c��|����tt�������S)z?Test whether the name is a package name or a version specifier.)�lstrip�
startswith�tuple�op_dict�keysrs r�_is_package_namer$6s1���{�{�}�}�'�'��g�l�l�n�n�(=�(=�>�>�>�>rc��g}|D]*}|�|�d�����+|}g}g}d}|D]b}t|��r.|s,|r(|�d�|����g}d|vrd}|rd|vrd}|�|���c|�d�|����|S)a�Recover package names as list from user's raw input.

    :input: a mixed and invalid list of names or version specifiers
    :return: a list of valid package name

    eg.
    input: ['django>1.11.1', '<1.11.3', 'ipaddress', 'simpleproject>1.1.0', '<2.0.0']
    return: ['django>1.11.1,<1.11.3', 'ipaddress', 'simpleproject>1.1.0,<2.0.0']

    input: ['django>1.11.1,<1.11.3,ipaddress', 'simpleproject>1.1.0,<2.0.0']
    return: ['django>1.11.1,<1.11.3', 'ipaddress', 'simpleproject>1.1.0,<2.0.0']
    �,F�[T�])�extend�splitr$�append�join)�names�tmp�one_line�
name_parts�
package_names�in_bracketsrs       r�_recover_package_namer3;s��
�C��(�(���
�
�8�>�>�#�&�&�'�'�'�'��E��J��M��K��	 �	 ���D�!�!�	�+�	��
;��$�$�S�X�X�j�%9�%9�:�:�:��J��$�;�;��K��	 �3�$�;�;��K����$�����������*�-�-�.�.�.��rc���|dz}|�|��\}}}|dkr|�d|�d||z�����|������}d�|D��}|S)Nz --helprzCould not get output from z: ��msgc�<�g|]}|�d���|��S)z--�r )�.0�xs  r�
<listcomp>z$_get_cmd_options.<locals>.<listcomp>gs)��:�:�:��q�|�|�D�'9�'9�:�1�:�:�:r)�run_command�	fail_json�stripr*)�module�cmd�thiscmd�rc�stdout�stderr�words�cmd_optionss        r�_get_cmd_optionsrG`s����I�o�G��+�+�G�4�4��B���	�Q�w�w�����7�7�7�F�U[�O�O�\��]�]�]��L�L�N�N� � �"�"�E�:�:�e�:�:�:�K��rc� �|ddgz}t|��}|||d�}|�|||���\}}}|dkr9|dgz}|�||���\}}}|dkrt||||��d�|��||fS)	z.Return results of pip command to get packages.�listz--format=freeze)�LANG�LC_ALL�LC_MESSAGES)�cwd�environ_updater�freeze�rM� )r
r<�_failr,)	r?r�chdir�command�locale�lang_envrB�out�errs	         r�
_get_packagesrYks����V�.�/�/�G�
%�f�
-�
-�F��&��H�H�H��%�%�g�5��%�R�R�L�B��S�
�Q�w�w���
�"���)�)�'�u�)�=�=���C��
��7�7��&�'�3��,�,�,��8�8�G���c�3�&�&rc���|D]]}d|vr3|�d��\}}t�|��}n�:||jkr|�|��rdS�^dS)z+Return whether or not package is installed.rTF)r*�Package�canonicalize_name�package_name�is_satisfied_by)r?�req�installed_pkgs�pkg_command�pkg�pkg_name�pkg_versions       r�_is_presentre}st�������3�;�;�$'�I�I�d�O�O�!�H�k��0�0��:�:�H�H���s�'�'�'�C�,?�,?��,L�,L�'��4�4���5rc��d}trd}d}|�&tj�|��r|}n%|f}n!|�|�t	��rt
jddg}|��|�Og}|D]}|�|d|��}|�n-�|�dd�	|��z���n�tj�	|d	��}|d
df}|D]T}tj�	||��}tj�
|��rt|��r|}n6�U|�d|zd
d�	|��zzdz���t|t��s|g}|S)N)�pip2r)�pip3z-mzpip.__main__Fz<Unable to find any of %s to use.  pip needs to be installed.z, r5�binrrz*Unable to find pip in the virtualenv, %s, zunder any of these names: %s. z+Make sure pip is present in the virtualenv.)r�os�path�isabs�_have_pip_module�sys�
executable�get_bin_pathr=r,�existsr�
isinstancerI)	r?�envro�candidate_pip_basenamesr�opt_dirs�basename�venv_dir�	candidates	         r�_get_pipry�s���
.��
�,�"+��
�C���
�7�=�=��$�$�	4��C�C�(2�m�#�#�	�	���0@�0B�0B���~�t�^�4��
�{��;��H�3�
e�
e���)�)�(�E�8�D�D���?��E�#�
� � �&?�AE���Kb�Ac�Ac�&d� �e�e�e��
�w�|�|�C��/�/�H�'>�q�'A�5�&I�#�3�

T�

T���G�L�L��8�<�<�	��7�>�>�)�,�,���y�1I�1I��#�C��E��� � �%Q�TW�%W�%E����Sj�Ik�Ik�%l�&m�%R�&S� �T�T�T��c�4� � ���e���Jrc���	ddlm}n#t$rd}YnwxYw|r,	t|d����}nA#t$rd}Yn3wxYwddl}	|�d��d}n#t$rd}YnwxYw|S)zjReturn True if the `pip` module can be found using the current Python interpreter, otherwise return False.r)�	find_specNrFT)�importlib.utilr{�ImportError�bool�	Exception�imp�find_module)r{�foundr�s   rrmrm�s����,�,�,�,�,�,�,�������	�	�	�������	����5�)�)�*�*�E�E���	�	�	��E�E�E�	����	�
�
�
�	��O�O�E�"�"�"��E�E���	�	�	��E�E�E�	����
�Ls-�	���7�A�A�A&�&A5�4A5c�`�d}|r|d|��z
}|r|d|��z
}|�||���dS)N�zstdout: z

:stderr: )r@r6)r=)r?r@rWrXr6s     rrRrR�sX��
�C�
�&���s�s�%�%��
�)���#�#�(�(��
����#��&�&�&�&�&rc���|rd|zg}ng}|�dd|��}|�d}nE|�|dt|g��\}}}|rd}n|�d|�����}|S)aThis is only needed for special packages which do not show up in pip freeze

    pip and setuptools fall into this category.

    :returns: a string containing the version number if the package is
        installed.  None if the package is not installed.
    z%s/bin�pythonFNz-cr)rpr<�_SPECIAL_PACKAGE_CHECKERSr>)	r?�packagersru�
python_bin�
formatted_deprBrWrXs	         r�_get_package_infor��s������s�N�#������$�$�X�u�h�?�?�J����
�
��)�)�:�t�=V�W^�=_�*`�a�a���C��
�	>� �M�M�(/���������=�M��rc����jr��d���tj�jd��}t
j�|d��|dkr��|dd��|d<�jdr|�	d��n/t�|d��}d|vr|�	d���jd}t�fd	�d
D����sE|r|�	d|z��nMtr"|�	dtjz��n#�jdr��d�
��|�	|����||���\}}	}
||	z
}||
z
}|dkrt#�|||��||fS)NT��changed�virtualenv_commandr�virtualenv_site_packagesz--system-site-packagesz--no-site-packages�virtualenv_pythonc3�6�K�|]}|�jdvV��dS)r�N)�params)r9�exr?s  �r�	<genexpr>z#setup_virtualenv.<locals>.<genexpr> s0�����Y�Y�R�r�V�]�#7�8�8�Y�Y�Y�Y�Y�Yr)�pyvenvz-m venvz-p%sz_virtualenv_python should not be used when using the venv module or pyvenv as virtualenv_commandr5rP)�
check_mode�	exit_json�shlexr*r�rjrkrvrpr+rG�anyrrnror=r<rR)r?rsrSrWrXr@�cmd_optsr�rB�out_venv�err_venvs`          r�setup_virtualenvr�s����
��'������&�&�&�
�+�f�m�$8�9�
:�
:�C�
�w����A����3�q�6�)�)��$�$�S��V�T�2�2��A���}�/�0�-��
�
�+�,�,�,�,�#�F�C��F�3�3���8�+�+��J�J�+�,�,�,��
�&9�:���Y�Y�Y�Y�CX�Y�Y�Y�Y�Y�
��		0��J�J�v� 1�1�2�2�2�2�
�	0�
�J�J�v���.�/�/�/��
��*�	+�
����I�	�	
�	
�	
�
�J�J�s�O�O�O�#�/�/���/�?�?��B��(��8�O�C��8�O�C�	�Q�w�w�
�f�c�3��$�$�$���8�Orc�r�eZdZdZejd��Zd	d�Zed���Z	d�Z
ed���Zd�Z
dS)
r[z�Python distribution package metadata wrapper.

    A wrapper class for Requirement, which provides
    API to parse package name, version specifier,
    test whether a package is already satisfied.
    z[-_.]+Nc���d|_||_d|_|rI|���}|d���rdnd}|�||f��}	t
j|��|_|jjdkrd|vrd|_d|j_n)t�
|jj��|_d|_dS#t$r}Yd}~dSd}~wwxYw)NFrrrQ�
distributerT)�_plain_packager]�_requirementr�isdigitr,r�parse�project_namer[r\�
ValueError)�self�name_string�version_string�	separator�es     r�__init__zPackage.__init__Gs	��#���'��� ����	H�+�2�2�4�4�N� .�q� 1� 9� 9� ;� ;�D����I�#�.�.�+�~�)F�G�G�K�
	� +� 1�+� >� >�D��� �-��=�=�,�R]�B]�B]�$0��!�1=��!�.�.�$+�$=�$=�d�>O�>\�$]�$]��!�"&�D������	�	�	��D�D�D�D�D�����	���s�"A1C�
C*�%C*c�F�|jrt|jj��SdS)NF)r�r~r��specs�r�s r�has_version_specifierzPackage.has_version_specifier\s&����	1���)�/�0�0�0��urc����|jsdS	|jj��d���S#t$r7t����t
�fd�|jjD����cYSwxYw)NFT)�prereleasesc3�d�K�|]*\}}t|�t|����V��+dS�N)r"r)r9�op�ver�version_to_tests   �rr�z*Package.is_satisfied_by.<locals>.<genexpr>jsQ��������B�����O�\�#�->�->�?�?������r)r�r��	specifier�contains�AttributeErrorr�allr�)r�r�s `rr^zPackage.is_satisfied_bybs�����"�	��5�	��$�.�7�7��UY�7�Z�Z�Z���	�	�	�*�?�;�;�O������#�0�6������
�
�
�	���s� -�>A.�-A.c�f�tj�d|�����S)N�-)r[�_CANONICALIZE_RE�sub�lowerrs rr\zPackage.canonicalize_nameos)���'�+�+�C��6�6�<�<�>�>�>rc�F�|jrt|j��S|jSr�)r�r	r�r]r�s r�__str__zPackage.__str__ts'����	0��T�.�/�/�/�� � rr�)�__name__�
__module__�__qualname__�__doc__r�compiler�r��propertyr�r^�staticmethodr\r��rrr[r[=s���������"�r�z�)�,�,������*����X��
����?�?��\�?�!�!�!�!�!rr[c�
�tdgddgddggd����}tttddt|������	��td
d���td���td���td
���tdd���td
d���td���td���tdd���td
���td
���td�����
�
ddggddgddggd���}ts)|�t
d��t���|jd}|jd}|jd}|jd}|jd}|jd}|jd}|jd}	d}
|	r"|r tj
�||	��}	|rrt|t��s]	t|d��}nK#t$r>|�d tt!j��d!���"��YnwxYwd}|�tj|��}	|d#kr|�|�d$�%��|�t'j��}d&}d&}
|	rVtj
�tj
�|	d'd(����sd}
t-||	||
|��\}
}t/||	|jd��}|||z}d}|	r tj
�|	d'��}d}|r�|D]}|rt1|��rd}n�d)�t3|��D��}|�rt5|��d!kr|�d*�%��|d+jr|�d,�%��t9t|d+��|��|d+<|jd-rGg}|r|�d.��}d/|vr*|�d/��d.�|��}|r'|�tAj|����|r |�d0�|D����n2|r|�d1|g��n|�!dd2g�3��|j"r�|s
|s|d#ks|s|�!d�4��tG|||��\}}}|
|z
}
||z
}d}|r�d5�|
�d6��D��}|�$d7��rAd8|vsd|vr9d9D]6}||vr0tK|||	��}|�|�|��|
d:|zz
}
�7|D](}tM||||��}|dkr|r|d;kr|rd}n�)|�!|||
|�<��d}|s|rtG|||��\}}}|�'|||�=��\}}}|
|z
}
||z
}|d!kr|d;kr	d>|vsd>|vrn|d+krtQ|||
|��|d;krd?|v}n"|�d@|v}ntG|||��\}} }|| k}|p|
}|�!|||||||	|
|�A�	�	|�tj|��dSdS#|�tj|��wwxYw)BN�install�	uninstallz-y�-U)r�r�z--force-reinstall)�present�absent�latest�forcereinstall�strr�)�type�default�choicesrI)r��elements)r�rkr~F)r�r��
virtualenv)
�stater�version�requirementsr�r�r�r��
extra_args�editablerSro�umaskrr�roT)�
argument_spec�required_one_of�mutually_exclusive�supports_check_moder)r6�	exceptionr�r�r�rSr��zumask must be an octal integer�)r6�detailsr�z)version is incompatible with state=latestr5r�ri�activatec�,�g|]}t|����Sr�)r[)r9rbs  rr;zmain.<locals>.<listcomp>�s��L�L�L������L�L�Lrz�'version' argument is ambiguous when installing multiple package distributions. Please specify version restrictions next to each package in 'name' argument.rz�The 'version' argument conflicts with any version specifier provided along with a package name. Please keep the version specifier, but remove the 'version' argument.r�rQz-ec3�4K�|]}t|��V��dSr�r�r9�ps  rr�zmain.<locals>.<genexpr>�s(����6�6��y��|�|�6�6�6�6�6�6rz-rz)No valid name or requirements file found.)r��warningsr�c�j�g|]0}|�d���|�d���,|�.|��1S)z
You are usingzYou should considerr8r�s  rr;zmain.<locals>.<listcomp>so��O�O�O�!�a�l�l�?�>[�>[�O�de�dp�dp�rG�eH�eH�O�MN�O�A�O�O�Or�
z freezerrz%s
r�)r�r@rCrD)�path_prefixrMz
not installedzSuccessfully uninstalledzSuccessfully installed)	r�r@rr�r�r�r�rCrD))�dictr
rIr#�HAS_SETUPTOOLSr=r�SETUPTOOLS_IMP_ERRr�rjrkr,rr�intrr	rn�exc_infor��tempfile�
gettempdirrqr�ryrr3�lenr�r[r*r+r)r�r�r�rY�endswithr�rer<rR)!�	state_mapr?r�rr�r�r�rSr�rs�venv_created�	old_umaskrXrWrr@r��has_vcsrb�packages�	args_list�pkg_cmd�out_pip�err_pipr��pkg_listr�r��
is_present�out_freeze_before�_rB�out_freeze_afters!                                 r�mainrzs�������T�"��4� �=�=�=�	���I����E�9�d�9�>�>�CS�CS�>T�>T�U�U�U��6�E�2�2�2��e�$�$�$��5�)�)�)���(�(�(�%)�v�u�%E�%E�%E�#���F�F�F�"��.�.�.���'�'�'��v�u�5�5�5��F�#�#�#���(�(�(��E�"�"�"�
�
�
�!�.�1�2�#�^�4�|�\�6R�S� �%���F�*�7����1�,�?�?�#5�	�	7�	7�	7�
�M�'�"�E��=�� �D��m�I�&�G��=��0�L���|�,�J��M�'�"�E��M�'�"�E�
�-��
%�C��L�
�'�u�'��g�l�l�5�#�&�&���C�Z��s�+�+�C�	C���q�M�M�E�E���	C�	C�	C����!A�%.�s�|�~�~�a�/@�%A�%A�
�
C�
C�
C�
C�
C�	C�����I����H�U�O�O�	�J ��H����!4����!L��M�M�M��=��'�)�)�E������	J��7�>�>�"�'�,�,�s�E�:�"F�"F�G�G�
J�#��+�F�C���S�I�I���S��v�s�F�M�,�$?�@�@���I�e�$�$�����	3��'�,�,�s�E�2�2�K����	G��
�
����;�s�+�+��"�G��E��M�L�0E�d�0K�0K�L�L�L�H��"��x�=�=�1�$�$��$�$�k�%�����A�;�4���$�$�d�%����
&�i����&<�&<�g�F�F�����=��$�	1��I��
2�&�,�,�S�1�1�	��9�$�$�� � ��&�&�&� �X�X�i�0�0�
��	0��J�J�u�{�:�.�.�/�/�/��	��J�J�6�6�X�6�6�6�6�6�6�6�
�	��J�J��l�+�,�,�,�,�����E�F�
�
�
�
�
��	S��
/�\�
/�U�h�->�->�d�->�� � �� �.�.�.�(5�f�c�5�(I�(I�%�G�W�g��7�N�C��7�N�C��G��
�O�O�s�y�y����O�O�O���#�#�I�.�.�	>�E�T�M�M�\�UY�EY�EY� 5�>�>���$�;�;�,=�f�c�3�,O�,O�M�,�8� (���
� >� >� >� #�v�
�'=� =���'���G�!,�V�W�h��!P�!P�J���*�*�:�*�5�H�CT�CT�Yc�CT�"&��������W�'�#�c��R�R�R� ���	H�7�	H�&3�F�C��&G�&G�#�A� �!�%�1�1�#�;�TY�1�Z�Z���G�W��w����w���
��7�7�u��(�(��w�&�&�/�W�*D�*D��
�1�W�W��&�#�s�C�(�(�(��H���0�G�;�G�G� �(�2�g�=���)6�v�s�E�)J�)J�&��#�Q�+�/?�?���)�\������c��g�$�<�C� #�C�	�	1�	1�	1�� ��H�Y������!� ��9� ��H�Y�����!���s �H�AI�I�7PZ)�)[�__main__)NNr�);�
__future__rrrr��
__metaclass__�
DOCUMENTATION�EXAMPLES�RETURNrjrrnr��operatorr��	traceback�types�#ansible.module_utils.compat.versionrr��
pkg_resourcesrr�r}�
format_exc�ansible.module_utils._textr	�ansible.module_utils.basicr
rr�"ansible.module_utils.common.localer
�ansible.module_utils.sixrr�r�r�ge�le�gt�lt�eq�ner"rr$r3rGrYreryrmrRr�r�r[rr�r�rr�<module>rs���A�@�@�@�@�@�@�@�@�@��
�B�
�H_��B
��8
�	�	�	�	�	�	�	�
�
�
�
���������������������<�<�<�<�<�<���0�)�)�)�)�)�)��N�N���0�0�0��N�-��-�/�/����0����1�0�0�0�0�0�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�G�G�G�G�G�G�(�(�(�(�(�(�,^�$p�r�r���"�*�*�
+�
+����H�K�h�k���8�;�h�k���V�V��#�#�#�
?�?�?�
"�"�"�J���'�'�'�$���8�8�8�8�v���<'�'�'�����23�3�3�l:!�:!�:!�:!�:!�:!�:!�:!�zB �B �B �J�z����D�F�F�F�F�F��s�A�A�A

Youez - 2016 - github.com/yon3zu
LinuXploit