Work with incron
Return the contents of the specified user's incrontab
CLI Example:
salt '*' incron.list_tab root
This function is an alias of list_tab
.
Return the contents of the specified user's incrontab
CLI Example:
salt '*' incron.list_tab root
Return the contents of the user's incrontab
CLI Example:
salt '*' incron.raw_incron root
Return the contents of the system wide incrontab
CLI Example:
salt '*' incron.raw_system_incron
This function is an alias of rm_job
.
Remove a incron job for a specified user. If any of the day/time params are specified, the job will only be removed if the specified params match.
CLI Example:
salt '*' incron.rm_job root /path
Remove a incron job for a specified user. If any of the day/time params are specified, the job will only be removed if the specified params match.
CLI Example:
salt '*' incron.rm_job root /path
Sets an incron job up for a specified user.
CLI Example:
salt '*' incron.set_job root '/root' 'IN_MODIFY' 'echo "$$ $@ $# $% $&"'
Writes the contents of a file to a user's incrontab
CLI Example:
salt '*' incron.write_incron_file root /tmp/new_incron
Writes the contents of a file to a user's incrontab and return error message on error
CLI Example:
salt '*' incron.write_incron_file_verbose root /tmp/new_incron