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__/command.cpython-311.opt-1.pyc
�

���c�2���ddlmZmZmZeZdZdZdZddl	Z	ddl
Z
ddlZddlZddl
mZddlmZmZmZddlmZd	�Zed
kre��dSdS)�)�absolute_import�division�print_functionaC
---
module: command
short_description: Execute commands on targets
version_added: historical
description:
     - The C(command) module takes the command name followed by a list of space-delimited arguments.
     - The given command will be executed on all selected nodes.
     - The command(s) will not be
       processed through the shell, so variables like C($HOSTNAME) and operations
       like C("*"), C("<"), C(">"), C("|"), C(";") and C("&") will not work.
       Use the M(ansible.builtin.shell) module if you need these features.
     - To create C(command) tasks that are easier to read than the ones using space-delimited
       arguments, pass parameters using the C(args) L(task keyword,https://docs.ansible.com/ansible/latest/reference_appendices/playbooks_keywords.html#task)
       or use C(cmd) parameter.
     - Either a free form command or C(cmd) parameter is required, see the examples.
     - For Windows targets, use the M(ansible.windows.win_command) module instead.
extends_documentation_fragment:
    - action_common_attributes
    - action_common_attributes.raw
attributes:
    check_mode:
        details: while the command itself is arbitrary and cannot be subject to the check mode semantics it adds C(creates)/C(removes) options as a workaround
        support: partial
    diff_mode:
        support: none
    platform:
      support: full
      platforms: posix
    raw:
      support: full
options:
  free_form:
    description:
      - The command module takes a free form string as a command to run.
      - There is no actual parameter named 'free form'.
  cmd:
    type: str
    description:
      - The command to run.
  argv:
    type: list
    elements: str
    description:
      - Passes the command as a list rather than a string.
      - Use C(argv) to avoid quoting values that would otherwise be interpreted incorrectly (for example "user name").
      - Only the string (free form) or the list (argv) form can be provided, not both.  One or the other must be provided.
    version_added: "2.6"
  creates:
    type: path
    description:
      - A filename or (since 2.0) glob pattern. If a matching file already exists, this step B(will not) be run.
      - This is checked before I(removes) is checked.
  removes:
    type: path
    description:
      - A filename or (since 2.0) glob pattern. If a matching file exists, this step B(will) be run.
      - This is checked after I(creates) is checked.
    version_added: "0.8"
  chdir:
    type: path
    description:
      - Change into this directory before running the command.
    version_added: "0.6"
  stdin:
    description:
      - Set the stdin of the command directly to the specified value.
    type: str
    version_added: "2.4"
  stdin_add_newline:
    type: bool
    default: yes
    description:
      - If set to C(true), append a newline to stdin data.
    version_added: "2.8"
  strip_empty_ends:
    description:
      - Strip empty lines from the end of stdout/stderr in result.
    version_added: "2.8"
    type: bool
    default: yes
notes:
    -  If you want to run a command through the shell (say you are using C(<), C(>), C(|), and so on),
       you actually want the M(ansible.builtin.shell) module instead.
       Parsing shell metacharacters can lead to unexpected commands being executed if quoting is not done correctly so it is more secure to
       use the C(command) module when possible.
    -  C(creates), C(removes), and C(chdir) can be specified after the command.
       For instance, if you only want to run a command if a certain file does not exist, use this.
    -  Check mode is supported when passing C(creates) or C(removes). If running in check mode and either of these are specified, the module will
       check for the existence of the file and report the correct changed status. If these are not supplied, the task will be skipped.
    -  The C(executable) parameter is removed since version 2.4. If you have a need for this parameter, use the M(ansible.builtin.shell) module instead.
    -  For Windows targets, use the M(ansible.windows.win_command) module instead.
    -  For rebooting systems, use the M(ansible.builtin.reboot) or M(ansible.windows.win_reboot) module.
seealso:
- module: ansible.builtin.raw
- module: ansible.builtin.script
- module: ansible.builtin.shell
- module: ansible.windows.win_command
author:
    - Ansible Core Team
    - Michael DeHaan
a�
- name: Return motd to registered var
  ansible.builtin.command: cat /etc/motd
  register: mymotd

# free-form (string) arguments, all arguments on one line
- name: Run command if /path/to/database does not exist (without 'args')
  ansible.builtin.command: /usr/bin/make_database.sh db_user db_name creates=/path/to/database

# free-form (string) arguments, some arguments on separate lines with the 'args' keyword
# 'args' is a task keyword, passed at the same level as the module
- name: Run command if /path/to/database does not exist (with 'args' keyword)
  ansible.builtin.command: /usr/bin/make_database.sh db_user db_name
  args:
    creates: /path/to/database

# 'cmd' is module parameter
- name: Run command if /path/to/database does not exist (with 'cmd' parameter)
  ansible.builtin.command:
    cmd: /usr/bin/make_database.sh db_user db_name
    creates: /path/to/database

- name: Change the working directory to somedir/ and run the command as db_owner if /path/to/database does not exist
  ansible.builtin.command: /usr/bin/make_database.sh db_user db_name
  become: yes
  become_user: db_owner
  args:
    chdir: somedir/
    creates: /path/to/database

# argv (list) arguments, each argument on a separate line, 'args' keyword not necessary
# 'argv' is a parameter, indented one level from the module
- name: Use 'argv' to send a command as a list - leave 'command' empty
  ansible.builtin.command:
    argv:
      - /usr/bin/make_database.sh
      - Username with whitespace
      - dbname with whitespace
    creates: /path/to/database

- name: Safely use templated variable to run command. Always use the quote filter to avoid injection issues
  ansible.builtin.command: cat {{ myfile|quote }}
  register: myoutput
u
msg:
  description: changed
  returned: always
  type: bool
  sample: True
start:
  description: The command execution start time.
  returned: always
  type: str
  sample: '2017-09-29 22:03:48.083128'
end:
  description: The command execution end time.
  returned: always
  type: str
  sample: '2017-09-29 22:03:48.084657'
delta:
  description: The command execution delta time.
  returned: always
  type: str
  sample: '0:00:00.001529'
stdout:
  description: The command standard output.
  returned: always
  type: str
  sample: 'Clustering node rabbit@slave1 with rabbit@master …'
stderr:
  description: The command standard error.
  returned: always
  type: str
  sample: 'ls cannot access foo: No such file or directory'
cmd:
  description: The command executed by the task.
  returned: always
  type: list
  sample:
  - echo
  - hello
rc:
  description: The command return code (0 means success).
  returned: always
  type: int
  sample: 0
stdout_lines:
  description: The command standard output split in lines.
  returned: always
  type: list
  sample: [u'Clustering node rabbit@slave1 with rabbit@master …']
stderr_lines:
  description: The command standard error split in lines.
  returned: always
  type: list
  sample: [u'ls cannot access foo: No such file or directory', u'ls …']
N)�
AnsibleModule)�	to_native�to_bytes�to_text)�is_iterablec��ttt��tdd���tdd���td���t��td���td���td�	��tdd
���tdd
�����
�
d
���}|jd
}|jd}|jd}|jd}|jd}|jd}|jd}|jd}|jd}	|jd}
dddddddddd�	}|s|r|�d|z��d}|r|���dkr|sd|d<d|d<|jd8i|��|r|rd|d<d|d<|jd8i|��|s|rt
j|��}|p|}t|d���rd �|D��}||d!<|rgt|d"�#��}	tj|��n@#ttf$r,}d$t|��z|d<|jd8i|��Yd}~nd}~wwxYw|jrd%}
nd&}
|r,t!j|��r|
�d'|�d(�|d<d)|z|d*<d+|d<|ds.|r,t!j|��s|
�d'|�d,�|d<d-|z|d*<d+|d<|dr
|jd8i|��d
|d.<|jslt$j���|d/<|�|||d||	�0��\|d<|d*<|d1<t$j���|d2<nd+|d<d3|d<|�|�
d
|d4<d|d.<|d/�Y|d2�Qt|d2|d/z
��|d5<t|d2��|d2<t|d/��|d/<|
rVt|d*���d6��|d*<t|d1���d6��|d1<|dd+krd7|d<|jd8i|��|jd8i|��dS)9N�boolF)�type�default�list�str)r
�elements�path)r
)�requiredT)
�_raw_params�_uses_shell�argv�chdir�
executable�creates�removes�stdin�stdin_add_newline�strip_empty_ends)�
argument_spec�supports_check_moderrrrrrrrrr�)	�changed�stdout�stderr�rc�cmd�start�end�delta�msgzoAs of Ansible 2.4, the parameter 'executable' is no longer supported with the 'command' module. Not using '%s'.�r$zno command givenr)z+only command or argv can be given, not both)�include_stringsc�2�g|]}t|dd�����S)�surrogate_or_strict�
simplerepr)�errors�	nonstring)r)�.0�args  �</usr/lib/python3.11/site-packages/ansible/modules/command.py�
<listcomp>zmain.<locals>.<listcomp>s)��e�e�e�Y\�	�#�&;�|�T�T�T�e�e�e�r%r-)r/z/Unable to change directory before execution: %s�Would�Didz not run command since 'z' existszskipped, since %s existsr"rz' does not existz skipped, since %s does not existr!r&)r�use_unsafe_shell�encoding�data�binary_datar#r'z+Command would have run if not in check mode�skippedr(z
znon-zero return code�)r�dict�params�warn�strip�	fail_json�shlex�splitr
r�osr�IOError�OSErrorr	�
check_mode�glob�	exit_json�datetime�now�run_command�rstrip)�module�shellrr�argsrrrrrrA�r�e�shouldas              r3�mainrU�s���
������&�%�8�8�8��6�E�2�2�2��F�#�#�#��v�v��f�%�%�%��f�%�%�%���&�&�&�"���=�=�=�!�v�t�<�<�<�
�
�
�!����F� 
�M�-�(�E��M�'�"�E���|�,�J��=��'�D��=�� �D��m�I�&�G��m�I�&�G��M�'�"�E��
�&9�:���M�,�-�E��R�2�T�$�Y]�fj�uy�CE�	F�	F�A���Z�����F�IS�S�	T�	T�	T��
���D�J�J�L�L�B�&�&��&���$��%��%�������1����������$��@��%�������1�����!�T�!��{�4� � ���<�4�D��4��/�/�/�f�e�e�`d�e�e�e���A�e�H��"���'<�=�=�=��	"��H�U�O�O�O�O����!�	"�	"�	"�H�7�ST�:�:�U�A�e�H��F��!�!�q�!�!�!�!�!�!�!�!�����	"����
�����������9�W���	�AH���'�'�'�R�A�e�H�4�w�>�A�h�K��A�d�G�
�U�8�����y��!�!�	�IP���RY�RY�RY�Z�A�e�H�<�w�F�A�h�K��A�d�G���x�������1�����A�i�L���!��&�*�*�,�,��'�
�,2�,>�,>�t�PZ�mr�~B�DI�\m�Xm�-?�-p�-p�)��$���8��a��k��$�(�(�*�*��%�����$��@��%���?�w���A�i�L� �A�i�L�	��z��!�E�(�"6��Q�u�X��'�
�2�3�3��'�
��1�U�8�$�$��%���Q�w�Z�(�(��'�
��:��a��k�*�*�1�1�&�9�9��(���a��k�*�*�1�1�&�9�9��(����w�!�|�|�)��%�������1�����F����q�����s�H�I�'"I�I�__main__)�
__future__rrrr
�
__metaclass__�
DOCUMENTATION�EXAMPLES�RETURNrKrIrErC�ansible.module_utils.basicr�ansible.module_utils._textrrr	�'ansible.module_utils.common.collectionsr
rU�__name__r=r5r3�<module>r`s���A�@�@�@�@�@�@�@�@�@��
�e�
�N+��Z5
��n��������	�	�	�	�����4�4�4�4�4�4�C�C�C�C�C�C�C�C�C�C�?�?�?�?�?�?�|�|�|�~�z����D�F�F�F�F�F��r5

Youez - 2016 - github.com/yon3zu
LinuXploit