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

���cEf����ddlmZmZmZeZdZdZdZddl	Z	ddl
Z
ddlZddlZddl
Z
ddlZddlmZddlmZmZddlmZGd	�d
e��ZGd�de��Zd
�Zedkre��dSdS)�)�absolute_import�division�print_functiona�
---
module: cron
short_description: Manage cron.d and crontab entries
description:
  - Use this module to manage crontab and environment variables entries. This module allows
    you to create environment variables and named crontab entries, update, or delete them.
  - 'When crontab jobs are managed: the module includes one line with the description of the
    crontab entry C("#Ansible: <name>") corresponding to the "name" passed to the module,
    which is used by future ansible/module calls to find/check the state. The "name"
    parameter should be unique, and changing the "name" value will result in a new cron
    task being created (or a different one being removed).'
  - When environment variables are managed, no comment line is added, but, when the module
    needs to find/check the state, it uses the "name" parameter to find the environment
    variable definition line.
  - When using symbols such as %, they must be properly escaped.
version_added: "0.9"
options:
  name:
    description:
      - Description of a crontab entry or, if env is set, the name of environment variable.
      - This parameter is always required as of ansible-core 2.12.
    type: str
    required: yes
  user:
    description:
      - The specific user whose crontab should be modified.
      - When unset, this parameter defaults to the current user.
    type: str
  job:
    description:
      - The command to execute or, if env is set, the value of environment variable.
      - The command should not contain line breaks.
      - Required if I(state=present).
    type: str
    aliases: [ value ]
  state:
    description:
      - Whether to ensure the job or environment variable is present or absent.
    type: str
    choices: [ absent, present ]
    default: present
  cron_file:
    description:
      - If specified, uses this file instead of an individual user's crontab.
        The assumption is that this file is exclusively managed by the module,
        do not use if the file contains multiple entries, NEVER use for /etc/crontab.
      - If this is a relative path, it is interpreted with respect to I(/etc/cron.d).
      - Many linux distros expect (and some require) the filename portion to consist solely
        of upper- and lower-case letters, digits, underscores, and hyphens.
      - Using this parameter requires you to specify the I(user) as well, unless I(state) is not I(present).
      - Either this parameter or I(name) is required
    type: path
  backup:
    description:
      - If set, create a backup of the crontab before it is modified.
        The location of the backup is returned in the C(backup_file) variable by this module.
    type: bool
    default: no
  minute:
    description:
      - Minute when the job should run (C(0-59), C(*), C(*/2), and so on).
    type: str
    default: "*"
  hour:
    description:
      - Hour when the job should run (C(0-23), C(*), C(*/2), and so on).
    type: str
    default: "*"
  day:
    description:
      - Day of the month the job should run (C(1-31), C(*), C(*/2), and so on).
    type: str
    default: "*"
    aliases: [ dom ]
  month:
    description:
      - Month of the year the job should run (C(1-12), C(*), C(*/2), and so on).
    type: str
    default: "*"
  weekday:
    description:
      - Day of the week that the job should run (C(0-6) for Sunday-Saturday, C(*), and so on).
    type: str
    default: "*"
    aliases: [ dow ]
  special_time:
    description:
      - Special time specification nickname.
    type: str
    choices: [ annually, daily, hourly, monthly, reboot, weekly, yearly ]
    version_added: "1.3"
  disabled:
    description:
      - If the job should be disabled (commented out) in the crontab.
      - Only has effect if I(state=present).
    type: bool
    default: no
    version_added: "2.0"
  env:
    description:
      - If set, manages a crontab's environment variable.
      - New variables are added on top of crontab.
      - I(name) and I(value) parameters are the name and the value of environment variable.
    type: bool
    default: false
    version_added: "2.1"
  insertafter:
    description:
      - Used with I(state=present) and I(env).
      - If specified, the environment variable will be inserted after the declaration of specified environment variable.
    type: str
    version_added: "2.1"
  insertbefore:
    description:
      - Used with I(state=present) and I(env).
      - If specified, the environment variable will be inserted before the declaration of specified environment variable.
    type: str
    version_added: "2.1"
requirements:
  - cron (any 'vixie cron' conformant variant, like cronie)
author:
  - Dane Summers (@dsummersl)
  - Mike Grozak (@rhaido)
  - Patrick Callahan (@dirtyharrycallahan)
  - Evan Kaufman (@EvanK)
  - Luca Berruti (@lberruti)
extends_documentation_fragment:
    - action_common_attributes
attributes:
    check_mode:
        support: full
    diff_mode:
        support: full
    platform:
        support: full
        platforms: posix
a�
- name: Ensure a job that runs at 2 and 5 exists. Creates an entry like "0 5,2 * * ls -alh > /dev/null"
  ansible.builtin.cron:
    name: "check dirs"
    minute: "0"
    hour: "5,2"
    job: "ls -alh > /dev/null"

- name: 'Ensure an old job is no longer present. Removes any job that is prefixed by "#Ansible: an old job" from the crontab'
  ansible.builtin.cron:
    name: "an old job"
    state: absent

- name: Creates an entry like "@reboot /some/job.sh"
  ansible.builtin.cron:
    name: "a job for reboot"
    special_time: reboot
    job: "/some/job.sh"

- name: Creates an entry like "PATH=/opt/bin" on top of crontab
  ansible.builtin.cron:
    name: PATH
    env: yes
    job: /opt/bin

- name: Creates an entry like "APP_HOME=/srv/app" and insert it after PATH declaration
  ansible.builtin.cron:
    name: APP_HOME
    env: yes
    job: /srv/app
    insertafter: PATH

- name: Creates a cron file under /etc/cron.d
  ansible.builtin.cron:
    name: yum autoupdate
    weekday: "2"
    minute: "0"
    hour: "12"
    user: root
    job: "YUMINTERACTIVE=0 /usr/sbin/yum-autoupdate"
    cron_file: ansible_yum-autoupdate

- name: Removes a cron file from under /etc/cron.d
  ansible.builtin.cron:
    name: "yum autoupdate"
    cron_file: ansible_yum-autoupdate
    state: absent

- name: Removes "APP_HOME" environment variable from crontab
  ansible.builtin.cron:
    name: APP_HOME
    env: yes
    state: absent
�#N)�
AnsibleModule)�to_bytes�	to_native)�shlex_quotec��eZdZdS)�CronTabErrorN)�__name__�
__module__�__qualname__���9/usr/lib/python3.11/site-packages/ansible/modules/cron.pyrr�s�������Drrc��eZdZdZdd�Zd�Zd�Zdd�Zd�Zd�Z	d	�Z
d
�Zd�Zd�Z
dd
�Zd�Zd�Zd�Zd�Zd�Zdd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�ZdS)�CronTabz�
        CronTab object to write time based crontab file

        user      - the user of the crontab (defaults to current user)
        cron_file - a cron file under /etc/cron.d, or an absolute path
    Nc�.�||_||_tj��dk|_d|_d|_d|_|j�dd���|_	|r�tj
�|��r||_t|d���|_natj
�d	|��|_tj
�d
t|d�����|_nd|_|���dS)Nrz
#Ansible: ��crontabT)�required�surrogate_or_strict��errorsz/etc/cron.ds/etc/cron.d)�module�user�os�getuid�root�lines�ansible�
n_existing�get_bin_path�cron_cmd�path�isabs�	cron_filer�b_cron_file�join�read)�selfrrr(s    r�__init__zCronTab.__init__�s��������	��Y�[�[�A�%��	���
�#��������0�0��T�0�J�J��
��		"��w�}�}�Y�'�'�
s�!*���#+�I�>S�#T�#T�#T�� � �!#����m�Y�!G�!G���#%�7�<�<����[p�@q�@q�@q�#r�#r�� � �!�D�N��	�	�����rc��g|_|jr�	t|jd��}t	|���d���|_|j���|_|���dS#t$rYdSt$r(tdtj
��d���wxYw|j�|���d���\}}}|dkr|dkrtd	���||_|���}d}|D]�}|d
ks?t#jd|��sEt#jd|��s0t#jd
|��s|j�|��n8t#j|��dz}t#j|d|jd��|_|dz
}��dS)N�rbrr�Unexpected error:rT��use_unsafe_shell�zUnable to read crontab�z8# DO NOT EDIT THIS FILE - edit the master and reinstall.z# \(/tmp/.*installed on.*\)z# \(.*version.*\)z[
]?r)r!r(�openr)r	r+r#�
splitlines�close�IOError�	Exceptionr�sys�exc_infor�run_command�_read_user_execute�re�match�append�escape�sub)	r,�f�rc�out�errr!�count�l�patterns	         rr+zCronTab.reads�����
��>�	�	
K���)�4�0�0��"+�A�F�F�H�H�=R�"S�"S�"S���!�_�7�7�9�9��
����	�	�	�	�	���
�
�
�����
K�
K�
K�"�#6�����q�8I�J�J�J�
K����"�[�4�4�T�5L�5L�5N�5N�ae�4�f�f�N�R��c��Q�w�w�2��7�7�"�#;�<�<�<�!�D�O��N�N�$�$�E��E��
�
���1�9�9�R�X�.i�kl�%m�%m�9�%'�X�.L�a�%P�%P��%'�X�.B�A�%F�%F���J�%�%�a�(�(�(�(� �i��l�l�Y�6�G�&(�f�W�b�$�/�1�&M�&M�D�O���
���
�
s�A/B�
B?�1B?c�|�t|j��dkrdS|jD]}|���rdS�dS�NrTF)�lenr!�strip)r,�lines  r�is_emptyzCronTab.is_empty$sL���t�z�?�?�a����4��
�
!�
!���:�:�<�<�!� �5�5�!��4rc��|rt|d��}nm|jrt|jd��}nPtjd���\}}tj|tdd����tj|d��}|�	t|�������|���|rdS|jsh|j
�|�|��d���\}}}tj|��|d	kr|j
�|�
��|j
���r)|jr$|j
�|jd��dSdSdS)zI
        Write the crontab to the system. Saves all information.
        �wbr��prefix�0644�NTr1r��msgF)r5r(r)�tempfile�mkstempr�chmod�int�fdopen�writer�renderr7rr<�_write_execute�unlink�	fail_json�selinux_enabled�set_default_selinux_context)r,�backup_file�fileh�filedr&rDrErFs        rr]z
CronTab.write-s����	+���d�+�+�E�E�
�^�	+���)�4�0�0�E�E�"�*�)�<�<�<�K�E�4��H�T�3�v�q�>�>�*�*�*��I�e�T�*�*�E�
���H�T�[�[�]�]�+�+�,�,�,�
���
�
�
��	��F��~�	/�!�[�4�4�T�5H�5H��5N�5N�ae�4�f�f�N�R��c��I�d�O�O�O��Q�w�w���%�%�#�%�.�.�.��;�&�&�(�(�	K�T�^�	K��K�3�3�D�N�E�J�J�J�J�J�	K�	K�	K�	Krc��|j�|��S�N)r"�r,�names  r�
do_commentzCronTab.do_commentNs�����t�t�,�,rc��|j�|�|����|j�d|z��dS�N�%s)r!r@rk�r,rj�jobs   r�add_jobzCronTab.add_jobQsF���
���$�/�/�$�/�/�0�0�0�	
�
���$�#�,�'�'�'�'�'rc�:�|�|||j��Srh)�_update_job�
do_add_jobros   r�
update_jobzCronTab.update_jobXs������c�4�?�;�;�;rc�`�|�|��|�d|z��dSrm�r@�r,r!�commentrps    rrtzCronTab.do_add_job[s0��
���W����
���T�S�\�"�"�"�"�"rc�:�|�|d|j��S�Nr)rs�
do_remove_jobris  r�
remove_jobzCronTab.remove_job`�������b�$�*<�=�=�=rc��dSrhrrxs    rr|zCronTab.do_remove_jobc����trc�P�|s|s|j�d|��dS|r|}n|r|}|�|��}t|��dkr5|r|ddz}n
|r|d}|j�||��dS|j�d|z���dS)Nrr3zVariable named '%s' not found.rV)r!�insert�find_envrLrra)r,�decl�insertafter�insertbefore�
other_name�
other_decl�indexs       r�add_envzCronTab.add_envfs����	�|�	��J���a��&�&�&��F��	&�$�J�J�
�	&�%�J��]�]�:�.�.�
��z�?�?�Q����
&�"�1�
��)����
&�"�1�
���J���e�T�*�*�*��F�����"B�Z�"O��P�P�P�P�Prc�:�|�|||j��Srh)�_update_env�
do_add_env)r,rjr�s   r�
update_envzCronTab.update_envzs������d�D�O�<�<�<rc�0�|�|��dSrhrw�r,r!r�s   rr�zCronTab.do_add_env}s��
���T�����rc�:�|�|d|j��Sr{)r��
do_remove_envris  r�
remove_envzCronTab.remove_env�r~rc��dSrhrr�s   rr�zCronTab.do_remove_env�r�rc��	tj|j��dS#t$rYdSt$r(tdt
j��d���wxYw)NTFr0r)rr`r(�OSErrorr9rr:r;)r,s r�remove_job_filezCronTab.remove_job_file�ss��	G��I�d�n�%�%�%��4���	�	�	��5�5��	G�	G�	G��2�C�L�N�N�1�4E�F�F�F�	G���s��
A�1Ac��d}|jD]N}|�||kr||gcSd}�tjd|jz|��rtjd|jzd|��}�O|r�t|j��D]�\}}||kr�tjd|jz|j|dz
��s@|j�||�|����|j||dgcS|r\|j|dz
|�d��kr5|�|��|j|dz
<|j|dz
|dgcS��gS)Nrnrr3T)r!r>r?r"rB�	enumerater�rk)r,rjrpryrH�is      r�find_jobzCronTab.find_job�sp������	>�	>�A��"��d�?�?�#�Q�<�'�'�'�"�G�G���%�$�,�.��2�2�
>��&����!5�r�1�=�=����
	<�!�$�*�-�-�	
<�	
<���1���8�8��8�E�D�L�$8�$�*�Q��U�:K�L�L�<��
�)�)�!�T�_�_�T�-B�-B�C�C�C� $�
�1�
�q�$�7�7�7�7��<�$�*�Q��U�"3�t���t�7L�7L�"L�"L�,0�O�O�D�,A�,A��
�1�q�5�)� $�
�1�q�5� 1�1�d�;�;�;�;���	rc�v�t|j��D]#\}}tjd|z|��r||gcS�$gS�Nz^%s=)r�r!r>r?)r,rjr�rHs    rr�zCronTab.find_env�sS��!�$�*�-�-�	"�	"�H�E�1��x��$���*�*�
"��q�z�!�!�!�
"��	rc	��|�d��}|rd}	nd}	|r#|jr|	�d|�d|j�d|��S|	�d|�d|��S|jr|	�|�d|�d|�d|�d|�d|j�d|��S|	�|�d|�d|�d|�d|�d|��S)N�
rr�@� )rMr(r)
r,�minute�hour�day�month�weekdayrp�special�disabled�disable_prefixs
          r�get_cron_jobzCronTab.get_cron_job�s����i�i������	 � �N�N��N��		h��~�
C�(6����������C�C�P�P�%3�^�^�W�W�W�c�c�B�B��~�
h�3A�>�6�6�6�4�4�4�QT�QT�QT�V[�V[�V[�]d�]d�]d�fj�fo�fo�fo�qt�qt�u�u�0>��������c�c�c�SX�SX�SX�Za�Za�Za�cf�cf�g�grc��g}|jD]P}tjd|jz|��r1|�tjd|jzd|�����Q|S)Nrnr)r!r>r?r"r@rB)r,�jobnamesrHs   r�get_jobnameszCronTab.get_jobnames�sc������	E�	E�A��x����,�a�0�0�
E������u�t�|�';�R�� C� C�D�D�D���rc��g}|jD]E}tjd|��r.|�|�d��d���F|S)Nz^\S+=�=r)r!r>r?r@�split)r,�envnamesrHs   r�get_envnameszCronTab.get_envnames�sR������	1�	1�A��x��!�$�$�
1����������Q��0�0�0���rc���|�|��}g}d}|jD]2}|�||||��d}�||kr|}�|�|���3||_t|��dkrdSdSrK)rkr!r@rL)r,rjrp�addlinesfunction�ansiblename�newlinesryrHs        rrszCronTab._update_job�s����o�o�d�+�+��������	#�	#�A��"� � ��7�C�8�8�8�����k�!�!��������"�"�"�"���
��x�=�=�A����4��5rc��g}|jD]<}tjd|z|��r
|||���'|�|���=||_dSr�)r!r>r?r@)r,rjr��addenvfunctionr�rHs      rr�zCronTab._update_env�se������	#�	#�A��x��$���*�*�
#���x��.�.�.�.�����"�"�"�"���
�
�
rc��g}|jD]}|�|���d�|��}|r|�d��dz}|S)zD
        Render this crontab as it would be in the crontab.
        �
r�)r!r@r*�rstrip)r,�crons�cron�results    rr^zCronTab.render�sc�����J�	�	�D��L�L���������5�!�!���	2��]�]�6�*�*�T�1�F��
rc�F�d}|j�r	tj��dkr-dt|j���dt|j���d�Stj��dkr+t|j���dt|j����Stj��dkr!|j�d	d
�d	t|j����Stjtj����d|jkrdt|j��z}|j�d	|�d	d
��S)
z@
        Returns the command line for reading a crontab
        r�SunOSzsu z -c 'z -l'�AIXz -l �HP-UXr�z-lr�-u %s�	r�platform�systemr
r%�pwd�getpwuidrr)r,rs  rr=zCronTab._read_user_executes�����9�	8��� � �G�+�+�+�-8���-C�-C�-C�-C�[�QU�Q^�E_�E_�E_�E_�`�`���"�"�e�+�+�%0���%?�%?�%?�%?��T�Y�AW�AW�AW�X�X���"�"�g�-�-�%)�]�]�]�D�D�D�+�d�i�:P�:P�:P�Q�Q���b�i�k�k�*�*�1�-���:�:���T�Y�!7�!7�7��!�]�]�]�D�D�D�$�$�7�7rc��d}|jr�tj��dvrUdt|j���dt|���dt|j���d|j�dt|���d�Stjtj����d|jkrd	t|j��z}|j�d|�dt|����S)
z?
        Return the command line for writing a crontab
        r)r�r�r�zchown r�z ; su 'z' -c '�'rr�r�)r,r&rs   rr_zCronTab._write_executes������9�	8��� � �$=�=�=�=���	�*�*�*�*�K��,=�,=�,=�,=�{�4�9�?U�?U�?U�?U�W[�Wd�Wd�Wd�fq�rv�fw�fw�fw�fw�y�y���b�i�k�k�*�*�1�-���:�:���T�Y�!7�!7�7��!�]�]�]�D�D�D�+�d�2C�2C�2C�D�Dr)NNrh)r
rr�__doc__r-r+rOr]rkrqrurtr}r|r�r�r�r�r�r�r�r�r�r�r�rsr�r^r=r_rrrrr�s�������������,"�"�"�H���K�K�K�K�B-�-�-�(�(�(�<�<�<�#�#�#�
>�>�>����Q�Q�Q�Q�(=�=�=����>�>�>����G�G�G�����6���h�h�h�(���������*	�	�	����8�8�8� E�E�E�E�Errc
���ttdOidtdd����dtd����dtddg�	���d
td����dtdd
d
dg����dtdd����dtdd����dtdd����dtdddg����dtdd����dtdddg����dtdgd�����d tdd����d!tdd����d"td����d#td�����dd"d#gg�$��}|jd}|jd}|jd}|jd
}|jd}|jd}|jd}|jd}|jd}	|jd}
|jd}|jd}|jd }
|jd!}|jd"}|jd#}|d
k}d}t��}t��}|rv|d%kr|�d&�'��t
j�|��}tj	d(|tj
��s|�d)|zd*z��tjtd+d,����t|||��}|�d-|z��|jrDt��}|j|d.<|jr|j|d/<n|jrd0|jz|d/<nd1|d/<|r)dd2�|||	|
|fD��vr|�d3�'��|r-t)j��d4kr|�d5�'��|rN|r|s|�d6�'��|�|�d7�'��|s|r|s|�d8�'��|r4|js-t/jd1�9��\}}|�|��|r�d:|vr|�d;�'��|�d<|�d=�}|�|��}|ret7|��d>kr|�|||��d}t7|��d>kr$|d?|kr|�||��d}�n�t7|��d>kr|�|��d}�n�|r�d@D]0}||�dA��vr|�dB��n�1|� |||	|
||||
��}|�!||��}t7|��d>kr|�"||��d}t7|��d>kr$|d?|kr|�#||��d}t7|��dCkr|�#||��d}n�|�!|��}t7|��d>kr�|�$|��d}|jr�|�%��ry|jrdD|dE<dF|dG<nt��}|jr%t
j�&|j��}n|�'��}|�(||||�H��|sA|jdDkr6|j�)dI��s|j�)dJ��sd}t|�*��|�+��||�K��}|rj|js|���|jrH|�,��|dE<|jr|j|dG<n|jrd0|jz|dG<nd1|dG<||dL<|r#|js|r||dM<ntj-|��|r||d
<|j(dOi|��|�(dN�'��dS)PNrj�strT)�typerr)r�rp�value)r��aliasesr(r&�state�present�absent)r��default�choices�backup�boolF)r�r�r��*r�r��dom)r�r�r�r�r��dow�special_time)�reboot�yearly�annually�monthly�weekly�daily�hourly)r�r�r��envr�r�)�
argument_spec�supports_check_mode�mutually_exclusivez/etc/crontabz>Will not manage /etc/crontab via cron_file, see documentation.rVz
^[A-Z0-9_-]+$z3Filename portion of cron_file ("%s") should consistzJ solely of upper- and lower-case letters, digits, underscores, and hyphens�022rUzcron instantiated - name: "%s"�before�
before_headerzcrontab for user "%s"rc��g|]}|dk��	S)r�r)�.0�xs  r�
<listcomp>zmain.<locals>.<listcomp>�s��I�I�I��!�s�(�I�I�Irz6You must specify time and date fields or special time.r�z4Solaris does not support special_time=... or @rebootz@To use cron_file=... parameter you must specify user=... as wellz<You must specify 'job' to install a new cron job or variablezCInsertafter and insertbefore parameters are valid only with env=yesrRr�z%Invalid name for environment variablez="�"rr3)�
r�r�z"Job should not contain line breaksr4r�afterz	/dev/null�after_header)�changedr(r��diffr�r�)�jobs�envs�warningsr�r�rdzUnable to execute cron task.r).r�dict�params�listrarr&�basenamer>�search�Ir@�umaskr[r�debug�_diffr#r(rr�r��
check_moderXrYr]r�rLr�r�r�rMr�r�rqrur}rO�isfiler��	exit_json�endswithr�r�r^r`)rrjrrpr(r�r�r�r�r�r�r�r�r�r�r�r��
do_installr��res_argsr��cron_file_basenamerr��backuphrdr��old_decl�char�old_jobs                              r�mainr#s�	��*��
�
�
��5�4�0�0�0�0�
��5�!�!�!�!�
��%�'��3�3�3�3�
���'�'�'�'�	
�
�E�9�y�(�>S�T�T�T�T�
��V�U�3�3�3�3�

��U�C�0�0�0�0�
��5�#�.�.�.�.�
��%��u�g�>�>�>�>�
��E�3�/�/�/�/�
��e�S�5�'�B�B�B�B�
��5�2z�2z�2z�{�{�{�{�
��v�u�5�5�5�5�
��&�%�0�0�0�0�
��%�(�(�(�(�
� �5�)�)�)�)�!
�$!�
�N�+�
�)���F�2�=�� �D��=�� �D�
�-��
�C��
�k�*�I��M�'�"�E�
�]�8�
$�F�
�]�8�
$�F��=�� �D�
�-��
�C��M�'�"�E��m�I�&�G��=��0�L��}�Z�(�H�
�-��
�C��-�
�.�K��=��0�L��)�#�J��G��v�v�H��v�v�H��j���&�&����!a��b�b�b��W�-�-�i�8�8���y�)�+=�r�t�D�D�	j��O�O�Q�Tf�f�h�i�
j�
j�
j��H�S���]�]�����f�d�I�.�.�G�
�L�L�1�D�8�9�9�9�
�|�	2��v�v�� �+��X����	2�$+�$5�D��!�!��|�
2�(?�'�,�(N��_�%�%�(1��_�%��W��I�I�f�d�C���%H�I�I�I�I�I����U��V�V�V��U���)�)�W�4�4����S��T�T�T��h��	e�T�	e����!c��d�d�d��;����!_��`�`�`��	h�<�	h��	h����!f��g�g�g��#�f�'�#�!)�!1��!C�!C�!C���+��
�
�k�"�"�"�
�4c��$�;�;����!H��I�I�I� �D�D�#�#�#�&���#�#�D�)�)���
	��8�}�}��!�!�����k�<�@�@�@����8�}�}�q� � �X�a�[�D�%8�%8��"�"�4��.�.�.�����8�}�}�q� � ��"�"�4�(�(�(�����"	c�$�
�
���3�9�9�V�,�,�,�,��O�O�$H�I�I�I��E�-��&�&�v�t�S�%��#�|�]e�f�f�C��&�&�t�S�1�1�G��7�|�|�q� � �����c�*�*�*����7�|�|�a���G�A�J�#�$5�$5��"�"�4��-�-�-����7�|�|�a����"�"�4��-�-�-�����&�&�t�,�,�G��7�|�|�a����"�"�4�(�(�(����$�
c��)9�)9�);�);�
c��|�&�(*��W�
�/:��^�,�,�#�v�v���(�<�"$�'�.�.��1B�"C�"C���")�"9�"9�";�";���$�$�W�	�QV�]a�$�b�b�b���w�)�R�/�/��"�+�+�D�1�1�	�W�5G�5P�5P�QU�5V�5V�	��G��
�
!�
!�
#�
#�
�
!�
!�
#�
#���	���H��
$�� �	��M�M�O�O�O��<�
	$�#�N�N�,�,�D��M�� �
5�'.�'8��^�$�$��<�5�+B�W�\�+Q�D��(�(�+4�D��(�#�H�V���#�f�'�#��	#�&1�H�]�#�#��I�k�"�"�"��*� )�����F�� � �x� � � ����7��8�8�8�8�8r�__main__)�
__future__rrrr��
__metaclass__�
DOCUMENTATION�EXAMPLES�RETURNrr�r�r>r:rX�ansible.module_utils.basicr�+ansible.module_utils.common.text.convertersrr	�ansible.module_utils.six.movesr
r9r�objectrrr
rrr�<module>rsQ��A�@�@�@�@�@�@�@�@�@��
�I�
�V5��n
��	�	�	�	�����
�
�
�
�	�	�	�	�
�
�
�
�����4�4�4�4�4�4�K�K�K�K�K�K�K�K�6�6�6�6�6�6�	�	�	�	�	�9�	�	�	�~E�~E�~E�~E�~E�f�~E�~E�~E�B
V9�V9�V9�r�z����D�F�F�F�F�F��r

Youez - 2016 - github.com/yon3zu
LinuXploit