HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.109.1.lve.el8.x86_64 #1 SMP Thu Mar 5 20:23:46 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //opt/saltstack/salt/lib/python3.10/site-packages/salt/states/__pycache__/cron.cpython-310.pyc
o

�N�g�\�@s�dZddlZddlZddlmZmZdd�Z									ddd�Zddd	�Z	d
d�Z
		
	
	
	
	
				ddd�Zddd�Z								ddd�Z
d dd�Zd!dd�ZdS)"aY
Management of cron, the Unix command scheduler
==============================================

Cron declarations require a number of parameters. The following are the
parameters used by Salt to define the various timing values for a cron job:

* ``minute``
* ``hour``
* ``daymonth``
* ``month``
* ``dayweek`` (0 to 6 are Sunday through Saturday, 7 can also be used for
  Sunday)

.. warning::

    Any timing arguments not specified take a value of ``*``. This means that
    setting ``hour`` to ``5``, while not defining the ``minute`` param, will
    result in Salt adding a job that will execute every minute between 5 and 6
    A.M.!

    Additionally, the default user for these states is ``root``. Therefore, if
    the cron job is for another user, it is necessary to specify that user with
    the ``user`` parameter.

A long time ago (before 2014.2), when making changes to an existing cron job,
the name declaration is the parameter used to uniquely identify the job,
so if an existing cron that looks like this:

.. code-block:: yaml

    date > /tmp/crontest:
      cron.present:
        - user: root
        - minute: 5

Is changed to this:

.. code-block:: yaml

    date > /tmp/crontest:
      cron.present:
        - user: root
        - minute: 7
        - hour: 2

Then the existing cron will be updated, but if the cron command is changed,
then a new cron job will be added to the user's crontab.

The current behavior is still relying on that mechanism, but you can also
specify an identifier to identify your crontabs:

.. code-block:: yaml

    date > /tmp/crontest:
      cron.present:
        - identifier: SUPERCRON
        - user: root
        - minute: 7
        - hour: 2

.. versionadded:: 2014.1.2

And, some months later, you modify it:

.. code-block:: yaml

    superscript > /tmp/crontest:
      cron.present:
        - identifier: SUPERCRON
        - user: root
        - minute: 3
        - hour: 4

.. versionadded:: 2014.1.2

The old **date > /tmp/crontest** will be replaced by
**superscript > /tmp/crontest**.

Additionally, Salt also supports running a cron every ``x minutes`` very similarly to the Unix
convention of using ``*/5`` to have a job run every five minutes. In Salt, this
looks like:

.. code-block:: yaml

    date > /tmp/crontest:
      cron.present:
        - user: root
        - minute: '*/5'

The job will now run every 5 minutes.

Additionally, the temporal parameters (minute, hour, etc.) can be randomized by
using ``random`` instead of using a specific value. For example, by using the
``random`` keyword in the ``minute`` parameter of a cron state, the same cron
job can be pushed to hundreds or thousands of hosts, and they would each use a
randomly-generated minute. This can be helpful when the cron job accesses a
network resource, and it is not desirable for all hosts to run the job
concurrently.

.. code-block:: yaml

    /path/to/cron/script:
      cron.present:
        - user: root
        - minute: random
        - hour: 2

.. versionadded:: 0.16.0

Since Salt assumes a value of ``*`` for unspecified temporal parameters, adding
a parameter to the state and setting it to ``random`` will change that value
from ``*`` to a randomized numeric value. However, if that field in the cron
entry on the minion already contains a numeric value, then using the ``random``
keyword will not modify it.

Added the opportunity to set a job with a special keyword like '@reboot' or
'@hourly'. Quotes must be used, otherwise PyYAML will strip the '@' sign.

.. code-block:: yaml

    /path/to/cron/script:
      cron.present:
        - user: root
        - special: '@hourly'

The script will be executed every reboot if cron daemon support this option.

.. code-block:: yaml

    /path/to/cron/otherscript:
      cron.absent:
        - user: root
        - special: '@daily'

This counter part definition will ensure than a job with a special keyword
is not set.
�N)�
_cron_matched�
_needs_changecCsdtvrdSdS)N�
cron.list_tabT)Fzcron module could not be loaded��__salt__�rr�D/opt/saltstack/salt/lib/python3.10/site-packages/salt/states/cron.py�__virtual__�sr	c

Cs�|dur
t|���}|durt|���}|durt|���}|dur(t|���}|dur2t|���}|	dur:t|	�}	|durB|du}|durJt|�}td|�}|
dur�|dD]D}t|||	�r�tdd�|d|f|d|f|d	|f|d
|f|d|f|d|	f|d
|f|d|f|d|ff	D��r�dSdSqXdS|dD]0}t|||	�r�tdd�|d|
f|d|	f|d
|f|d|f|d|ffD��r�dSdSq�dS)z
    Return the changes
    NTrZcronscS�g|]	\}}t||��qSr�r��.0�x�yrrr�
<listcomp>����z_check_cron.<locals>.<listcomp>�minute�hour�daymonth�month�dayweek�
identifier�cmd�comment�	commented�update�present�specialcSr
rrrrrrr�r�spec�absent)�str�lowerrr�any)
�userrrrrrrrrrr�lstZcronrrr�_check_cron�sl








����$�




����r%cCsN|durd}td|�}|dD]}||dkr$||dkr!dSdSqd	S)
z(
    Return the environment changes
    N�r�env�name�valuerrrr)r#r(r)r$r'rrr�_check_cron_env�s�r*cCsnd}tddkr
d}d}n%tddkrd}d}ntdd	kr#d}d
}ntddkr.d}d}nd}d
}|||fS)zG
    Returns the proper group owner and path to the cron directory
    �root�osZFreeBSDZwheelz/var/cron/tabsZOpenBSDZcrontabZ	os_family�Solarisz/var/spool/cron/crontabsZMacOSz/usr/lib/cron/tabsz/var/spool/cron)Z
__grains__)�owner�groupZcrontab_dirrrr�_get_cron_info�s 
r0r+�*Fc
Cs~|��}|	dur
|}	id|dd�}tdrVt||||||||||	|
d�}d|d<|d	kr6d
|�d�|d<|S|d
krHd|d<d
|�d�|d<|S|dkrTd
|�d�|d<|S|
durktd||||||||||	d�
}
ntd||
||||	d�}
|
d
kr�d
|�d�|d<|S|
dkr�d
|�d|�d�|d<||i|d<|S|
dkr�d
|�d�|d<||i|d<|Sd�|||
�|d<d|d<|S)a�
    Verifies that the specified cron job is present for the specified user.
    It is recommended to use `identifier`. Otherwise the cron job is installed
    twice if you change the name.
    For more advanced information about what exactly can be set in the cron
    timing parameters, check your cron system's documentation. Most Unix-like
    systems' cron documentation can be found via the crontab man page:
    ``man 5 crontab``.

    name
        The command that should be executed by the cron job.

    user
        The name of the user whose crontab needs to be modified, defaults to
        the root user

    minute
        The information to be set into the minute section, this can be any
        string supported by your cron system's the minute field. Default is
        ``*``

    hour
        The information to be set in the hour section. Default is ``*``

    daymonth
        The information to be set in the day of month section. Default is ``*``

    month
        The information to be set in the month section. Default is ``*``

    dayweek
        The information to be set in the day of week section. Default is ``*``

    comment
        User comment to be added on line previous the cron job

    commented
        The cron job is set commented (prefixed with ``#DISABLED#``).
        Defaults to False.

        .. versionadded:: 2016.3.0

    identifier
        Custom-defined identifier for tracking the cron line for future crontab
        edits. This defaults to the state name

    special
        A special keyword to specify periodicity (eg. @reboot, @hourly...).
        Quotes must be used, otherwise PyYAML will strip the '@' sign.

        .. versionadded:: 2016.3.0
    Fr&T��changesrr(�result�test)
rrrrrrrrrrNr4r�Cron � is set to be addedrr� already presentr� is set to be updatedzcron.set_job)
r#rrrrrrrrrzcron.set_special)r#rrrrr�new�
 added to �
's crontabr3�updated� updatedz3Cron {} for user {} failed to commit with error 
{}��strip�__opts__r%r�format)r(r#rrrrrrrrr�ret�status�datarrrrs�A�
���
��rcKs |��}|dur
|}|didd�}tdrDt|||d�}d|d<|d	kr2d|d<d
|�d�|d<|S|d
ks:|dkrBd
|�d�|d<|S|durRtd|||d�}n
td||||d�}|d	krjd
|�d�|d<|S|dkr�d
|�d|�d�|d<||i|d<|Sd�|||�|d<d|d<|S)a�
    Verifies that the specified cron job is absent for the specified user.

    If an ``identifier`` is not passed then the ``name`` is used to identify
    the cron job for removal.

    name
        The command that should be absent in the user crontab.

    user
        The name of the user whose crontab needs to be modified, defaults to
        the root user

    identifier
        Custom-defined identifier for tracking the cron line for future crontab
        edits. This defaults to the state name

    special
        The special keyword used in the job (eg. @reboot, @hourly...).
        Quotes must be used, otherwise PyYAML will strip the '@' sign.
    FTr&�r(r4r3rr5)rNr4rr6�
 is absentrrr� is set to be removedzcron.rm_jobzcron.rm_special)rr� already absent�removed� removed from r<r3z2Cron {} for user {} failed to commit with error {}r?)r(r#rr�kwargsrCrDrErrrr�s>���rr&Tc	Ks"d}
ztd|�dd}Wnty#id|��|dd�}|YSwtjj��}
tjj�|
d��"}td	|�}|�d
�sC|�d
�}|�tjj	�
|��Wd�n1sWwYid|d
d�}|}|s~t�|
�j
dkr~d|�d�|d<t�|
�|Stdr�tdd$|
||||||
g|||td�|	��}|\|d<|d<t�|
�|Std||t�\}}ztdd$|
|||||||
gt||dd�
|	��\}}}Wn#ty�}zd|d<i|d<d|��|d<|WYd}~Sd}~ww|�r||d<d|d<t�|
�|Sztd|
|||||||
gt|d�}Wn$t�y:}zd|d<i|d<d|��|d<|WYd}~Sd}~wwd}d|dv�rytd||
�}|ddk�red|�d �|d<d
|d<|d|d<n%d!�||
|d"�|d<d|d<i|d<n|d�r�d|�d#�|d<i|d<t�|
�|S)%a
    Provides file.managed-like functionality (templating, etc.) for a pre-made
    crontab file, to be assigned to a given user.

    name
        The source file to be used as the crontab. This source file can be
        hosted on either the salt master server, or on an HTTP or FTP server.
        For files hosted on the salt file server, if the file is located on
        the master in the directory named spam, and is called eggs, the source
        string is ``salt://spam/eggs``

        If the file is hosted on a HTTP or FTP server then the source_hash
        argument is also required

    source_hash
        This can be either a file which contains a source hash string for
        the source, or a source hash string. The source hash string is the
        hash algorithm followed by the hash of the file:
        ``md5=e138491e9d5b97023cea823fe17bac22``

    source_hash_name
        When ``source_hash`` refers to a hash file, Salt will try to find the
        correct hash by matching the filename/URI associated with that hash. By
        default, Salt will look for the filename being managed. When managing a
        file at path ``/tmp/foo.txt``, then the following line in a hash file
        would match:

        .. code-block:: text

            acbd18db4cc2f85cedef654fccc4a4d8    foo.txt

        However, sometimes a hash file will include multiple similar paths:

        .. code-block:: text

            37b51d194a7513e45b56f6524f2d51f2    ./dir1/foo.txt
            acbd18db4cc2f85cedef654fccc4a4d8    ./dir2/foo.txt
            73feffa4b7f6bb68e44cf984c85f6e88    ./dir3/foo.txt

        In cases like this, Salt may match the incorrect hash. This argument
        can be used to tell Salt which filename to match, to ensure that the
        correct hash is identified. For example:

        .. code-block:: yaml

            foo_crontab:
              cron.file:
                - name: https://mydomain.tld/dir2/foo.txt
                - source_hash: https://mydomain.tld/hashes
                - source_hash_name: ./dir2/foo.txt

        .. note::
            This argument must contain the full filename entry from the
            checksum file, as this argument is meant to disambiguate matches
            for multiple files that have the same basename. So, in the
            example above, simply using ``foo.txt`` would not match.

        .. versionadded:: 2016.3.5

    user
        The user to whom the crontab should be assigned. This defaults to
        root.

    template
        If this setting is applied then the named templating engine will be
        used to render the downloaded file. Currently, jinja and mako are
        supported.

    context
        Overrides default context variables passed to the template.

    replace
        If the crontab should be replaced, if False then this command will
        be ignored if a crontab exists for the specified user. Default is True.

    defaults
        Default context passed to the template.

    backup
        Overrides the default backup mode for the user's crontab.
    Z0600z	user.info�groupsrz"Could not identify group for user Fr2zw+z
cron.raw_cron�
Nr&TzUser z' already has a crontab. No changes maderr5zfile.check_managed)r(�source�source_hash�source_hash_namer#r/�mode�attrs�template�context�defaults�saltenvr4zfile.source_listzfile.get_managed)
r(rTrOrPrQr#r/rRrSrWrUrVZskip_verifyr3zUnable to manage file: zfile.manage_file)r(�sfnrCrO�
source_sumr#r/rRrSrW�backup�diffzcron.write_cron_file_verbose�retcodezCrontab for user z was updatedz.Unable to update user {} crontab {}. Error: {}�stderrz is in the correct stater)r�	Exception�salt�utils�filesZmkstempZfopen�endswith�writeZstringutilsZto_strr,�stat�st_size�unlinkrAZ__env__rB)r(rPrQr#rTrU�replacerVrZrLrRr/rCZ	cron_pathZfp_Zraw_cronrOZfcmrXrYr�excZcron_retrrr�file�s�^��	

�
�
�
����

�
��
�


ricCs*id|dd�}tdrDt|||d�}d|d<|dkr$d	|�d
�|d<|S|dkr6d|d<d	|�d
�|d<|S|dkrBd	|�d�|d<|Std|||d�}|dkr[d	|�d
�|d<|S|dkrrd	|�d|�d�|d<||i|d<|S|dkr�d	|�d�|d<||i|d<|Sd�|||�|d<d|d<|S)av
    Verifies that the specified environment variable is present in the crontab
    for the specified user.

    name
        The name of the environment variable to set in the user crontab

    user
        The name of the user whose crontab needs to be modified, defaults to
        the root user

    value
        The value to set for the given environment variable
    r&Tr2r5)r)Nr4r�	Cron env r7rrr8rr9zcron.set_envr:r;r<r3r=r>z7Cron env {} for user {} failed to commit with error 
{}F)rAr*rrB)r(r)r#rCrDrErrr�env_present�s>���rkcCs�|��}|didd�}tdr<t||�}d|d<|dkr*d|d<d|�d	�|d
<|S|dks2|dkr:d|�d
�|d
<|Std||�}|dkrQd|�d�|d
<|S|dkrhd|�d|�d�|d
<||i|d<|Sd�|||�|d
<d|d<|S)a4
    Verifies that the specified environment variable is absent from the crontab
    for the specified user

    name
        The name of the environment variable to remove from the user crontab

    user
        The name of the user whose crontab needs to be modified, defaults to
        the root user
    Tr&rFr5Nr4rrjrGrrrrHzcron.rm_envrIrJrKr<r3z6Cron env {} for user {} failed to commit with error {}F)r@rAr*rrB)r(r#rCrDrErrr�
env_absent�s2

��rl)	NNNNNNNNN)N)
r+r1r1r1r1r1NFFN)r+FN)r&Nr+NNTNr&)Nr+)r+)�__doc__r,Zsalt.utils.filesr_Zsalt.modules.cronrrr	r%r*r0rrrirkrlrrrr�<module>sV	
�
J
�
@
�
]1