Crontab(3pm) | User Contributed Perl Documentation | Crontab(3pm) |
Config::Crontab - Read/Write Vixie compatible crontab(5) files
use Config::Crontab; #################################### ## making a new crontab from scratch #################################### my $ct = new Config::Crontab; ## make a new Block object my $block = new Config::Crontab::Block( -data => <<_BLOCK_ ); ## mail something to joe at 5 after midnight on Fridays MAILTO=joe 5 0 * * Fri /bin/someprogram 2>&1 _BLOCK_ ## add this block to the crontab object $ct->last($block); ## make another block using Block methods $block = new Config::Crontab::Block; $block->last( new Config::Crontab::Comment( -data => '## do backups' ) ); $block->last( new Config::Crontab::Env( -name => 'MAILTO', -value => 'bob' ) ); $block->last( new Config::Crontab::Event( -minute => 40, -hour => 3, -command => '/sbin/backup --partition=all' ) ); ## add this block to crontab file $ct->last($block); ## write out crontab file $ct->write; ############################### ## changing an existing crontab ############################### my $ct = new Config::Crontab; $ct->read; ## comment out the command that runs our backup $_->active(0) for $ct->select(-command_re => '/sbin/backup'); ## save our crontab again $ct->write; ############################### ## read joe's crontab (must have root permissions) ############################### ## same as "crontab -u joe -l" my $ct = new Config::Crontab( -owner => 'joe' ); $ct->read;
Config::Crontab provides an object-oriented interface to Vixie-style crontab(5) files for Perl.
A Config::Crontab object allows you to manipulate an ordered set of Event, Env, or Comment objects (also included with this package). Descriptions of these packages may be found below.
In short, Config::Crontab reads and writes crontab(5) files (and does a little pretty-printing too) using objects. The general idea is that you create a Config::Crontab object and associate it with a file (if unassociated, it will work over a pipe to "crontab -l"). From there, you can add lines to your crontab object, change existing line attributes, and write everything back to file.
Now, to successfully navigate the module's ins and outs, we'll need a little terminology lesson.
Config::Crontab (hereafter simply Crontab) sees a "crontab" file in terms of blocks. A block is simply an ordered set of one or more lines. Blocks are separated by two or more newlines. For example, here is a crontab file with two blocks:
## a comment 30 4 * * * /bin/some_command ## another comment ENV=some_value 50 9 * * 1-5 /bin/reminder --meeting=friday
The first block contains two Config::Crontab::* objects: a Comment object and an Event object. The second block contains an Env object in addition to a Comment object and an Event object. The Config::Crontab class, then, consists of zero or more Config::Crontab::Block objects. Block objects have these three basic elements:
5 10 * * * /some/command @reboot /bin/mystartup.sh ## 0 0 * * Fri /disabled/command
Notice that commented out event lines are still considered Event objects.
Event objects are described below in the Event package description. Please refer to it for details on manipulating Event objects.
MAILTO=joe SOMEVAR = some_value #DISABLED=env_setting
Notice that commented out environment lines are still considered Env objects.
Env objects are described below in the Env package description. Please refer to it for details on manipulating Env objects.
## this is a comment (imagine somewhitespace here)
Comment objects are described below in the Comment package description. Please refer to it for details on manipulating Comment objects.
Here is a simple crontab file:
MAILTO=joe@schmoe.org ## send reminder in April 3 10 * Apr Fri joe echo "Friday a.m. in April"
The file consists of an environment variable setting (MAILTO), a comment, and a command to run. After parsing the above file, Config::Crontab would break it up into the following objects:
+---------------------------------------------------------+ | Config::Crontab object | | | | +---------------------------------------------------+ | | | Config::Crontab::Block object | | | | | | | | +---------------------------------------------+ | | | | | Config::Crontab::Env object | | | | | | | | | | | | -name => MAILTO | | | | | | -value => joe@schmoe.org | | | | | | -data => MAILTO=joe@schmoe.org | | | | | +---------------------------------------------+ | | | +---------------------------------------------------+ | | | | +---------------------------------------------------+ | | | Config::Crontab::Block object | | | | | | | | +---------------------------------------------+ | | | | | Config::Crontab::Comment object | | | | | | | | | | | | -data => ## send reminder in April | | | | | +---------------------------------------------+ | | | | | | | | +---------------------------------------------+ | | | | | Config::Crontab::Event Object | | | | | | | | | | | | -datetime => 3 10 * Apr Fri | | | | | | -special => (empty) | | | | | | -minute => 3 | | | | | | -hour => 10 | | | | | | -dom => * | | | | | | -month => Apr | | | | | | -dow => Fri | | | | | | -user => joe | | | | | | -command => echo "Friday a.m. in April" | | | | | +---------------------------------------------+ | | | +---------------------------------------------------+ | +---------------------------------------------------------+
You'll notice the main Config::Crontab object encapsulates the entire file. The parser found two Block objects: the lone MAILTO variable setting, and the comment and command (together). Two or more newlines together in a crontab file constitute a block separator. This allows you to logically group commands (as most people do anyway) in the crontab file, and work with them as a Config::Crontab::Block objects.
The second block consists of a Comment object and an Event object, shown are some of the data methods you can use to get or set data in those objects.
Now that we know what Config::Crontab objects look like and what they're called, let's play around a little.
Let's say we have an existing crontab on many machines that we want to manage. The crontab contains some machine-dependent information (e.g., timezone, etc.), so we can't just copy a file out everywhere and replace the existing crontab. We need to edit each crontab individually, specifically, we need to change the time when a particular job runs:
30 2 * * * /usr/local/sbin/pirate --arg=matey
to 3:30 am because of daylight saving time (i.e., we don't want this job to run twice).
We can do something like this:
use Config::Crontab; my $ct = new Config::Crontab; $ct->read; my ($event) = $ct->select(-command_re => 'pirate --arg=matey'); $event->hour(3); $ct->write;
All done! This shows us a couple of subtle but important points:
Here's how we might do the same thing in a one-line Perl program:
perl -MConfig::Crontab -e '$ct=new Config::Crontab; $ct->read; \ ($ct->select(-command_re=>"pirate --arg=matey"))[0]->hour(3); \ $ct->write'
Nice! Ok. Now we need to add a new crontab entry:
35 6 * * * /bin/alarmclock --ring
We can do it like this:
$event = new Config::Crontab::Event( -minute => 36, -hour => 6, -command => '/bin/alarmclock --ring'); $block = new Config::Crontab::Block; $block->last($event); $ct->last($block);
or like this:
$event = new Config::Crontab::Event( -data => '35 6 * * * /bin/alarmclock --ring' ); $ct->last(new Config::Crontab::Block( -lines => [$event] ));
or like this:
$ct->last(new Config::Crontab::Block(-data => "35 6 * * * /bin/alarmclock --ring"));
We learn the following things from this example:
After the Module Utility section, the remainder of this document is a reference manual and describes the methods available (and how to use them) in each of the 5 classes: Config::Crontab, Config::Crontab::Block, Config::Crontab::Event, Config::Crontab::Env, and Config::Crontab::Comment. The reader is also encouraged to look at the example CGI script in the eg directory and the (somewhat contrived) examples in the t (testing) directory with this distribution.
Config::Crontab is a useful module by virtue of the "one-liner" test. A useful module must do useful work (editing crontabs is useful work) economically (i.e., useful work must be able to be done on a single command-line that doesn't wrap more than twice and can be understood by an adept Perl programmer).
Graham Barr's Net::POP3 module (actually, most of Graham's work falls in this category) is a good example of a useful module.
So, with no more ado, here are some useful one-liners with Config::Crontab:
perl -MConfig::Crontab -e '$c=new Config::Crontab; $c->read; \ $_->active(1) for $c->select(-command_re => "fetchmail"); $c->write'
perl -MConfig::Crontab -e '$c=new Config::Crontab; $c->read; \ $c->remove($c->block($c->select(-command_re => "/bin/unwanted"))); \ $c->write'
perl -MConfig::Crontab -e '$c=new Config::Crontab; $c->read; \ $_->dow("1-5") for $c->select(-command_re => "/sbin/backup"); $c->write'
perl -MConfig::Crontab -e '$c=new Config::Crontab; $c->read; \ $_->dow("*") for $c->select(-command_re => "/sbin/backup"); $c->write'
perl -MConfig::Crontab -e '$c=new Config::Crontab; $c->read; \ $_->value(q!joe@schmoe.org!) for $c->select(-name => "MAILTO"); $c->write'
perl -MConfig::Crontab -e '$c=new Config::Crontab; $c->read; \ $c->remove($c->select(-type => "comment")); $c->write'
perl -MConfig::Crontab -e '$c=new Config::Crontab; $c->read; \ $c->block($c->select(-data_re => "Friday"))->active(0); $c->write'
perl -MConfig::Crontab -e '$c = new Config::Crontab(-owner => "joe"); \ $c->read; $c->owner("mike"); $c->write'
This section describes Config::Crontab objects (hereafter simply Crontab objects). A Crontab object is an abstracted way of dealing with an entire crontab(5) file. The Crontab class has methods to allow you to select, add, or remove Block objects as well as read and parse crontab files and write crontab files.
This method is called implicitly when you instantiate an object via new. init takes the same arguments as new and read. If the -file argument is specified (and is non-false), init will invoke read automatically with the -file value. Use init to re-initialize an object.
Example:
## auto-parses foo.txt in implicit call to init $ct = new Config::Crontab( -file => 'foo.txt' ); ## re-initialize the object with default values and a new file $ct->init( -file => 'bar.txt' );
strict enforces the following constraints:
Examples:
## disable strict (default) $ct->strict(0);
system tells config::crontab to assume that the crontab object is after the pattern described in crontab(5) with an extra user field before the command field:
@reboot joeuser /usr/local/bin/fetchmail -d 300
where the given command will be executed by said user. when a crontab file (e.g., /etc/crontab) is parsed without system enabled, the user field will be lumped in with the command. When enabled, the user field will be accessible in each event object via the user method (see "user" in the event documentation below).
owner sets the owner of the crontab. If you're running Config::Crontab as a privileged user (e.g., "root"), you can read and write user crontabs by specifying owner either in the constructor, during init, or using owner before a read or write method is called:
$c = new Config::Crontab( -owner => 'joe' ); $c->read; ## reading joe's crontab
Or another way:
$c = new Config::Crontab; $c->owner('joe'); $c->read; ## reading joe's crontab
You can use this to copy a crontab from one user to another:
$c->owner('joe'); $c->read; $c->owner('bob'); $c->write;
Config::Crontab is strict in what it will allow for a username, since this information internally is passed to a shell. If the username specified is not a user on the system, Config::Crontab will set error with "Illegal username" and return undef; if strict mode is enabled, Config::Crontab will croak with the same error.
Further, once the username is determined valid, the username is then checked against a regular expression to thwart null string attacks and other maliciousness. The default regular expression used to check for a safe username is:
/[^a-zA-Z0-9\._-]/
If the pattern matches (i.e., if any characters other than the ones above are found in the supplied username), Config::Crontab will set error with "Illegal username" and return undef. If strict mode is enabled, Config::Crontab will croak with the same error.
$c->owner_re('[^a-zA-Z0-9_\.-#]'); ## allow # in usernames
Parses the crontab file specified by file. If file is not set (or is false in some way), the crontab will be read from a pipe to "crontab -l". read optionally takes the same arguments as new and init in "key => value" style lists.
Until you read the crontab, the Crontab object will be uninitialized and will contain no data. You may re-read existing objects to get new crontab data, but the object will retain whatever other attributes (e.g., strict, etc.) it may have from when it was initialized (or later attributes were changed) but will reset error. Use init to completely refresh an object.
If read fails, error will be set.
Examples:
## reads the crontab for this UID (via crontab -l) $ct = new Config::Crontab; $ct->read; ## reads the crontab from a file $ct = new Config::Crontab; $ct->read( -file => '/var/cronbackups/cron1' ); ## same thing as above $ct = new Config::Crontab( -file => '/var/cronbackups/cron1' ); $ct->read; ## '-file' attribute already set ## ditto using 'file' method $ct = new Config::Crontab; $ct->file('/var/cronbackups/cron1'); $ct->read; ## ditto, using a pipe $ct = new Config::Crontab; $ct->file('cat /var/cronbackups/cron1|'); $ct->read; ## ditto, using 'read' method $ct = new Config::Crontab; $ct->read( -file => 'cat /var/cronbackups/cron1|'); ## now fortified with error-checking $ct->read or do { warn $ct->error; return; };
Returns the current parsing mode for this object instance. If a mode is passed as an argument, next time this instance parses a crontab file, it will use this new mode. Valid modes are line, block (the default), or file.
Example:
## re-read this crontab in 'file' mode $ct->mode('file'); $ct->read;
Returns a list of Block objects in this crontab. The blocks method also takes an optional list reference as an argument to set this crontab's block list.
Example:
## get blocks, remove comments and dump for my $block ( $ct->blocks ) { $block->remove($block->select( -type => 'comment' ) ); $block->remove($block->select( -type => 'event', -active => 0 ); print $block->dump; } ## one way to remove unwanted blocks from a crontab my @keepers = $ct->select( -type => 'comment', -data_re => 'keep this block' ); $ct->blocks(\@keepers); ## another way to do it (notice 'nre' instead of 're') $ct->remove($ct->select( -type => 'comment', -data_nre => 'keep this block' ));
Returns a list of crontab lines that match the specified criteria. Multiple criteria may be specified. If no criteria are specified, select returns a list of all lines in the Crontab object.
Field names should be preceded by a hyphen (though without a hyphen is acceptable too).
The following criteria and associated values are available:
One of 'event', 'env', or 'comment'
The object in the block will be matched using 'eq' (string comparison) against this criterion.
The value of the object method specified will be matched using Perl regular expressions (see perlre) instead of string comparisons (uses the "=~" operator internally).
The value of the object method specified will be negatively matched using Perl regular expressions (see perlre) instead of string comparisons (uses the "!~" operator internally).
Examples:
## returns a list of comments in the crontab that matches the ## exact phrase '## I like bread' @comments = $ct->select( -type => 'comment', -data => '## I like bread' ); ## returns a list of comments in the crontab that match the ## regular expression 'I like bread' @comments = $ct->select( -type => 'comment', -data_re => 'I like bread' ); ## select all cron jobs likely to repeat during daylight saving @events = $ct->select( -type => 'event', -hour => '2' ); ## select cron jobs that happen from 10:20 to 10:40 on Fridays @events = $ct->select( -type => 'event', -hour => '10', -minute_re => '^(?:[2-3][0-9]|40)$', -dow_re => '(?:5|Fri)' ); ## select all cron jobs that execute during business hours @events = $ct->select( -type => 'event', -hour_re => '^(?:[8-9]|1[0-6])$' ); ## select all cron jobs that don't execute during business hours @events = $ct->select( -type => 'event', -hour_nre => '^(?:[8-9]|1[0-6])$' ); ## get all event lines in the crontab @events = $ct->select( -type => 'event' ); ## get all lines in the crontab @lines => $ct->select; ## get a line: note list context, also, no 'type' specified ($line) = $ct->select( -data_re => 'start backups' );
Returns a list of crontab Block objects that match the specified criteria. If no criteria are specified, select_blocks behaves just like the blocks method, returning all blocks in the crontab object.
The following criteria keys are available:
An integer or list reference of integers. Returns a list of blocks indexed by the given integer(s).
Example:
## select the first block in the file @blocks = $ct->select_blocks( -index => 1 ); ## select blocks 1, 5, 6, and 7 @blocks = $ct->select_blocks( -index => [1, 5, 6, 7] );
select_blocks returns Block objects, which means that if you need to access data elements inside the blocks, you'll need to retrieve them using lines or select method first:
## the first block in the crontab file is an environment variable ## declaration: NAME=value @blocks = $ct->select_blocks( -index => 1 ); print "This environment variable value is " . ($block[0]->lines)[0]->value . "\n";
Returns the block that this line belongs to. If the line is not found in any blocks, undef is returned. $line must be a Config::Crontab::Event, Config::Crontab::Env, or Config::Crontab::Comment object.
Examples:
## will always return undef for new objects; you'd never really do this $block = $ct->block( new Config::Crontab::Comment(-data => '## foo') ); ## returns a Block object $block = $ct->block($existing_crontab_line); $block->dump; ## find and remove the block in which '/bin/baz' is executed my $event = $ct->select( -type => 'event', -command_re => '/bin/baz'); $block = $ct->block($event); $ct->remove($block);
Removes a block from the crontab file (if a block is specified) or a crontab line from its block (if a crontab line object is specified).
Example:
## remove this block from the crontab $ct->remove($block); ## remove just a line from its block $ct->remove($line);
Replaces $oldblock with $newblock. Returns $oldblock if successful, undef otherwise.
Example:
## look for the block containing 'oldtuesday' and replace it with our new block $newblock = new Config::Crontab::Block( -data => '5 10 * * Tue /bin/tuesday' ); my $oldblock = $ct->block($ct->select(-data_re => 'oldtuesday')); $ct->replace($oldblock, $newblock);
These methods move a single Config::Crontab::Block object up or down in the Crontab object's internal array. If the Block object is not already a member of this array, it will be added to the array in the first position (for up) and in the last position (for down. See also first and last and up and down in the Block class.
Example:
$ct->up($block); ## move this block up one position
These methods move the Config::Crontab::Block object(s) to the first or last positions in the Crontab object's internal array. If the block is not already a member of the array, it will be added in the first or last position respectively.
Example:
$ct->last(new Config::Crontab::Block( -data => <<_BLOCK_ )); ## eat ice cream 5 * * * 1-5 /bin/eat --cream=ice _BLOCK_
These methods move the Config::Crontab::Block object(s) to the position immediately before or after the $look_for (or reference) block in the Crontab object's internal array.
If the objects are not members of the array, they will be added before or after the reference block respectively. If the reference object does not exist in the array, the blocks will be moved (or added) to the beginning or end of the array respectively (like first and last).
Example:
## search for a block containing a particular event (line) $block = $ct->block($ct->select(-command_re => '/bin/foo')); ## add the new blocks immediately after this block $ct->after($block, @new_blocks);
Writes the crontab to the file specified by the file method. If file is not set (or is false), write will attempt to write to a temporary file and load it via the "crontab" program (e.g., "crontab filename").
You may specify an optional filename as an argument to set file, which will then be used as the filename.
If write fails, error will be set.
Example:
## write out crontab $ct->write or do { warn "Error: " . $ct->error . "\n"; return; }; ## set 'file' and write simultaneously (future calls to read and ## write will use this filename) $ct->write('/var/mycronbackups/cron1.txt'); ## same thing $ct->file('/var/mycronbackups/cron1.txt'); $ct->write;
Removes a crontab. If file is set, that file will be unlinked. If file is not set (or is false), remove_tab will attempt to remove the selected user's crontab via crontab -u username -r or crontab -r for the current user id.
If remove_tab fails, error will be set.
Example:
$ct->remove_tab(''); ## unset file() and remove the current user's crontab
Returns the last error encountered (usually during a file I/O operation). Pass an empty string to reset (calling init will also reset it).
Example:
print "The last error was: " . $ct->error . "\n"; $ct->error('');
Returns a string containing the crontab file.
Example:
## show crontab print $ct->dump; ## same as 'crontab -l' except pretty-printed $ct = new Config::Crontab; $ct->read; print $ct->dump;
This section describes Config::Crontab::Block objects (hereafter referred to as Block objects). A Block object is an abstracted way of dealing with groups of crontab(5) lines. Depending on how Config::Crontab parsed the file (see the read and mode methods in Config::Crontab above), a block may consist of:
The default for Config::Crontab is to read in block (paragraph) mode. This allows you to group lines that have a similar purpose as well as order lines within a block (e.g., often you want an environment setting to take effect before certain cron commands execute).
An illustration may be helpful:
Line Block Block Line Entry 1 1 1 ## grind disks 2 1 2 5 5 * * * /bin/grind 3 1 3 4 2 1 ## backup reminder to joe 5 2 2 MAILTO=joe 6 2 3 5 0 * * Fri /bin/backup 7 2 4 8 3 1 ## meeting reminder to bob 9 3 2 MAILTO=bob 10 3 3 30 9 * * Wed /bin/meeting
Notice that each block has its own internal line numbering. Vertical space has been inserted between blocks to clarify block structures. Block mode parsing is the default.
Line Block Block Line Entry 1 1 1 ## grind disks 2 2 1 5 5 * * * /bin/grind 3 3 1 4 4 1 ## backup reminder to joe 5 5 1 MAILTO=joe 6 6 1 5 0 * * Fri /bin/backup 7 7 1 8 8 1 ## meeting reminder to bob 9 9 1 MAILTO=bob 10 10 1 30 9 * * Wed /bin/meeting
Notice that each line is also a block. You normally don't want to read in line mode unless you don't have paragraph breaks in your crontab file (the dumper prints a newline between each block; with each line being a block you get an extra newline between each line).
Line Block Block Line Entry 1 1 1 ## grind disks 2 1 2 5 5 * * * /bin/grind 3 1 3 4 1 4 ## backup reminder to joe 5 1 5 MAILTO=joe 6 1 6 5 0 * * Fri /bin/backup 7 1 7 8 1 8 ## meeting reminder to bob 9 1 9 MAILTO=bob 10 1 10 30 9 * * Wed /bin/meeting
Notice that there is only one block in file mode, and each line is a block line (but not a separate block).
This section describes methods accessible from Block objects.
Creates a new Block object. You may create Block objects in any of the following ways:
$event = new Config::Crontab::Block;
$event = new Config::Crontab::Block( -data => <<_BLOCK_ ); ## a comment 5 19 * * Mon /bin/fhe --turn=dad _BLOCK_
Constructor attributes available in the new method take the same arguments as their method counterparts (described below), except that the names of the attributes must have a hyphen ('-') prepended to the attribute name (e.g., 'lines' becomes '-lines'). The following is a list of attributes available to the new method:
If the -data attribute is present in the constructor when other attributes are also present, the -data attribute will override all other attributes.
Each of these attributes corresponds directly to its similarly-named method.
Examples:
## create an empty block object & populate it with the data method $block = new Config::Crontab::Block; $block->data( <<_BLOCK_ ); ## via a 'here' document ## 2:05a Friday backup MAILTO=sysadmin@mydomain.ext 5 2 * * Fri /sbin/backup /dev/da0s1f _BLOCK_ ## create a block in the constructor (also via 'here' document) $block = new Config::Crontab::Block( -data => <<_BLOCK_ ); ## 2:05a Friday backup MAILTO=sysadmin@mydomain.ext 5 2 * * Fri /sbin/backup /dev/da0s1f _BLOCK_ ## create an array of crontab objects my @lines = ( new Config::Crontab::Comment(-data => '## run bar'), new Config::Crontab::Event(-data => '5 8 * * * /foo/bar') ); ## create a block object via lines attribute $block = new Config::Crontab::Block( -lines => \@lines ); ## ...or with lines method $block->lines(\@lines); ## @lines is an array of crontab objects
If bogus data is passed to the constructor, it will return undef instead of an object reference. If there is a possiblility of poorly formatted data going into the constructor, you should check the object variable for definedness before using it.
If the -data attribute is present in the constructor when other attributes are also present, the -data attribute will override all other attributes.
Get or set a raw block. Internally, Block passes its arguments to other objects for parsing when a parameter is present.
Example:
## re-initialize this block $block->data("## comment\n5 * * * * /bin/checkup"); print $block->data;
Block data is terminated with a final newline.
Get block data as a list of Config::Crontab::* objects. Set block data using a list reference.
Example:
$block->lines( [ new Config::Crontab::Comment( -data => "## run backup" ), new Config::Crontab::Event( -data => "5 4 * * 1-5 /sbin/backup" ) ] ); ## sorta like $block->dump for my $obj ( $block->lines ) { print $obj->dump . "\n"; } ## a clumsy way to "unshift" a new event $block->lines( [new Config::Crontab::Comment(-data => '## hi mom!'), $block->lines] ); ## the right way to add a new event $block->first( new Config::Crontab::Comment(-data => '## hi mom!') ); print $_->dump for $block->lines;
Returns a list of Event, Env, or Comment objects from a block that match the specified criteria. Multiple criteria may be specified.
Field names should be preceded by a hyphen (though without a hyphen is acceptable too; we use hyphens to avoid the need for quoting keys and avoid potential bareword collisions).
If not criteria are specified, select returns a list of all lines in the block (like lines).
Example:
## select all events for my $event ( $block->select( -type => 'event') ) { print $event->dump . "\n"; } ## select events that have the word 'foo' in the command for my $event ( $block->select( -type => 'event', -command_re => 'foo') ) { print $event->dump . "\n"; }
Remove Config::Crontab::* objects from this block.
Example:
## simple case: you need to get a handle on these objects first $block->remove( $obj1, $obj2, $obj3 ); ## more complex: remove an event from a block by searching for my $event ( $block->select( -type => 'event') ) { next unless $event->command =~ /\bbackup\b/; ## look for backup command $block->remove($event); last; ## and remove it }
Replaces $oldobj with $newobj within a block. Returns $oldobj if successful, undef otherwise.
Example:
## replace $event1 with $event2 in this block. ## '=>' is the same as a comma (,) ($event1) = $block->select(-type => 'event', -command => '/bin/foo'); $event2 = new Config::Crontab::Event( -data => '5 2 * * * /bin/bar' ); ok( $block->replace($event1 => $event2) );
These methods move the Config::Crontab::* object up or down within the block.
If the object is not a member of the block, it will be added to the block in the first position for up and it will be added to the block in the last position for down.
Examples:
$block->up($event); ## move event up one position in the block ## add a new event at the end of the block $block->down(new Config::Crontab::Event(-data => '5 2 * * Mon /bin/monday'));
These methods move the Config::Crontab::* object(s) to the first or last positions in the block.
If the object or objects are not members of the block, they will be added to the first or last part of the block respectively.
Examples:
$block->first($comment); ## move $comment to the first line in this block ## add these new events to the end of the block $block->last( new Config::Crontab::Comment(-data => '## hi mom!'), new Config::Crontab::Comment(-data => '## hi dad!'), );
These methods move the Config::Crontab::* object(s) to the position immediately before or after the $look_for (or reference) object in the block.
If the objects are not members of the block, they will be added to the block before or after the reference object. If the reference object does not exist in the block, the objects will be moved (or added) to the beginning or end of the block respectively (much the same as first and last).
## simple example $block->after($event, $comment); ## move $comment after $event in this block
Activates or deactivates an entire block. If no arguments are given, active returns true but does nothing, otherwise the boolean used to activate or deactivate the block is returned.
If you have a series of related crontab lines you wish to comment out (or uncomment), you can use this handy shortcut to do it. You cannot deactivate Comment objects (i.e., they will always be comments).
Example:
$block->active(0); ## deactivate this block
This is (currently) a SuSE-specific extension. From crontab(5):
If the uid of the owner is 0 (root), he can put a "-" as first character of a crontab entry. This will prevent cron from writing a syslog message about this command getting executed.
nolog enables adds or removes this hyphen for a given cron event line (regardless of whether the user is root or not).
Example:
$block->nolog(1); ## quiet all entries in this block
Flags a block or an object inside a block with the specified data. The data you specify is completely up to you. This can be handy if you need to operate on many objects at once and don't want to risk pulling the rug out from under some (i.e., deleting numbered elements from a list changes the numbering of subsequent objects in the list, which is probably not what you want).
All normal query operations apply to -flag attributes (e.g., -flag_re, -flag_nre, etc).
Example:
## delete every other event in this block my $count = 0; for my $event ( $block->select( -type => 'event' ) ) { $event->flag('deleteme!') if $count % 2 == 0; $count++; } ## delete all blocks marked as 'deleteme!' $block->remove( $block->select( -flag => 'deleteme!' ) );
Returns a formatted string of the Block object (recursively calling all its objects' dump methods). A Block dump is newline terminated.
Example:
print $block->dump;
This section describes Config::Crontab::Event objects (hereafter Event objects). A Event object is an abstracted way of dealing with crontab(5) lines that look like any of the following (see crontab(5)):
Event objects are lines in the crontab file which trigger an event at a certain time (or set of times). This includes events that have been commented out. In Event object terms, an event that has been commented out is inactive. Events that have not been commented out are active.
The following description will serve as a terminology guide for this class:
Given the following crontab event entry:
5 3 * Apr Sun /bin/rejoice
we define the following parts of the Event object:
5 3 * Apr Sun /bin/rejoice ------------- ------------ datetime command
We can break down the datetime field into the following parts:
5 3 * Apr Sun ------ ---- --- ----- --- minute hour dom month dow
We might also see an event with a "special" datetime part:
@daily /bin/brush --teeth --feet -------- ------------------------- datetime command
This special datetime field can also be called 'special':
@daily /bin/brush --teeth --feet ------- ------------------------- special command
As of version 1.05, Crontab supports system crontabs, which adds an extra user field:
5 3 * Apr Sun chris /bin/rejoice ------------- ----- ------------ datetime user command
This field is described in crontab(5) on most systems.
These and other methods for accessing and manipulating Event objects are described in subsequent sections.
This section describes methods available to manipulate Event objects' creation and attributes.
Creates a new Event object. You may create Event objects in any of the following ways:
$event = new Config::Crontab::Event;
$event = new Config::Crontab::Event( -minute => 0 );
$event = new Config::Crontab::Event( -minute => 5, -hour => 2, -command => '/bin/document my_proggie', );
$event = new Config::Crontab::Event( -minute => 5, -hour => 2, -user => 'joeuser', -command => '/bin/foo --bar=blech', );
$event = new Config::Crontab::Event( -data => '30 3 * * 5,6 joeuser /bin/blech', -system => 1, );
Constructor attributes available in the new method take the same arguments as their method counterparts (described below), except that the names of the attributes must have a hyphen ('-') prepended to the attribute name (e.g., 'month' becomes '-month'). The following is a list of attributes available to the new method:
Each of these attributes corresponds directly to its similarly-named method.
Examples:
## use datetime attribute; using a 'special' string in -datetime is ## ok, but the reverse is not true (using a standard datetime string ## in -special) $event = new Config::Crontab::Event( -datetime => '@hourly', -command => '/bin/bar' ); ## use special attribute $event = new Config::Crontab::Event( -special => '@hourly', -command => '/bin/bar' ); ## use datetime attribute $event = new Config::Crontab::Event( -datetime => '5 * * * Fri', -command => '/bin/bar' ); ## this is an error because '5 * * * Fri' is not one of the special ## datetime strings. Currently this does not throw an error, but ## behavior is undefined for an object initialized thusly $event = new Config::Crontab::Event( -special => '5 * * * Fri', -command => '/bin/bar' ); ## create an inactive Event; default for datetime fields is '*' ## the result is the line: "#0 2 * * * /bin/foo" (notice '#') $event = new Config::Crontab::Event( -active => 0, -minute => 0, -hour => 2, ## 2 am -command => '/bin/foo' ); ...time passes... $event->active(1); ## now activate that event ## let the object do all the hard parsing $event = new Config::Crontab::Event( -data => '30 3 * * 5,6 /bin/blech' ); ...time passes... $event->hour(4); ## change the event from 3:30a to 4:30a
If bogus data is passed to the constructor, it will return undef instead of an object reference. If there is a possiblility of poorly formatted data going into the constructor, you should check the object variable for definedness before using it.
Event objects have several ways of setting the datetime fields:
## via the special method $event->special('@daily'); ## via datetime $event->datetime('@daily'); ## via datetime $event->datetime('0 0 * * *'); ## via datetime fields $event->minute(0); $event->hour(0); ## via data (takes the command part also) $event->data('0 0 * * * /bin/foo'); ## via the constructor at object instantiation time $event = new Config::Crontab::Event( -special => '@reboot' );
The standard datetime fields are: minute, hour, dom, month, and dow. If you set datetime using a special field, or if you initialize an Event object using a special datetime field, the standard datetime fields are reset to '*' and are invalid.
The special datetime field is a single field that takes the place of the 5 standard datetime fields (see crontab(5) and "special"). Currently, if you set special via the special method, the standard datetime fields (e.g., minute, hour, etc.) are not reset; the standard datetime fields are reset to '*' if you set special via the datetime method.
See other important information in the datetime and special method descriptions below.
If the -data attribute is present in the constructor when other attributes are also present, the -data attribute will override all other attributes.
Get or set the minute attribute of the Event object.
Example:
$event->minute(30); print "This event will occur at " . $event->minute . " minutes past the hour\n"; $event->minute(40); print "Now it will occur 10 minutes later\n";
Note from crontab(5):
Ranges of numbers are allowed. Ranges are two numbers separated with a hyphen. The specified range is inclusive. For example, 8-11 for an ``hours'' entry specifies execution at hours 8, 9, 10 and 11. Lists are allowed. A list is a set of numbers (or ranges) separated by commas. Examples: ``1,2,5,9'', ``0-4,8-12''. Step values can be used in conjunction with ranges. Following a range with ``/<number>'' specifies skips of the number's value through the range. For example, ``0-23/2'' can be used in the hours field to specify command execution every other hour (the alternative in the V7 standard is ``0,2,4,6,8,10,12,14,16,18,20,22''). Steps are also permitted after an asterisk, so if you want to say ``every two hours'', just use ``*/2''.
Get or set the hour attribute of the Event object.
Example: analogous to minute
Note from crontab(5): see /"minute".
Get or set the day-of-month attribute of the Event object.
Example: analogous to minute
Note from crontab(5):
Note: The day of a command's execution can be specified by two fields -- day of month, and day of week. If both fields are restricted (ie, aren't *), the command will be run when either field matches the current time. For example, ``30 4 1,15 * 5'' would cause a command to be run at 4:30 am on the 1st and 15th of each month, plus every Friday.
Get or set the month. This may be a digit (1-12) or a three character English abbreviated month string (Jan, Feb, etc.).
Note from crontab(5):
Names can also be used for the ``month'' and ``day of week'' fields. Use the first three letters of the particular day or month (case doesn't mat- ter). Ranges or lists of names are not allowed.
Get or set the day of week.
Example: analogous to minute
Note from crontab(5): see the /"month" entry above.
Get or set the special datetime field.
The special datetime field is one of (from crontab(5)):
string meaning ------ ------- @reboot Run once, at startup. @yearly Run once a year, "0 0 1 1 *". @annually (sames as @yearly) @monthly Run once a month, "0 0 1 * *". @weekly Run once a week, "0 0 * * 0". @daily Run once a day, "0 0 * * *". @midnight (same as @daily) @hourly Run once an hour, "0 * * * *".
If you set a datetime via special, this will override anything in the other standard datetime fields.
While you may use a special datetime string as an argument to the datetime method, you may not use a standard datetime string in the special method. Currently there is no error checking on this field, but behavior is undefined.
The datetime method will return the special value in preference to any other standard datetime fields. That is, if special has a value (e.g., '@reboot', etc.) it will be returned in all methods that return aggregate event data (e.g., datetime, dump, data, etc.). If special is false, the standard datetime fields will be returned instead. Thus, you should always check the value of special before using any of the standard datetime fields:
if( $event->special ) { print $event->special . "\n"; } ## use standard datetime elements else { print $event->minute . " " . $event->hour ... }
If you're presenting the entire datetime field formatted, use the datetime method (and then you don't have to do any checks on special):
## will print the special datetime value if set, ## standard datetime fields otherwise print $event->datetime . "\n";
Get or set the raw event line.
Internally, this is how the main Config::Crontab class does its parsing: it iterates over the crontab file and hands each line off to the data method for further parsing.
Example:
$event->data("#0 2 * * * /bin/foo"); ## prints "inactive (/bin/foo): 0 2 * * *"; print ( $event->active ? '' : 'in' ) . 'active ' . '(' . $event->command . '): " . $event->datetime;
Get or set the datetime fields of an event.
Possible datetime fields are either a special datetime format (e.g., @daily, @weekly, etc) or a standard datetime format (e.g., "0 2 * * Mon" is standard).
datetime is often a convenient shortcut for parsing a datetime field if you're not precisely sure what's in it (but are sure that it's either a special datetime field or a standard datetime field):
$event->datetime($some_string);
While you may pass a special datetime field into datetime, you may not pass a standard field into the special method. Currently, the object will not complain, and may even work in most cases, but the behavior is undefined and will likely become more strict in the future.
Get or set the user part of a system event object.
Example:
$event->user('joeuser');
The user field is only accessible when the crontab object was created or parsed with system mode enabled (see "system" above).
When set, will parse a -data string looking for a username before the command as described in crontab(5).
Example:
$event->system(1); $event->data('0 2 * * * joeuser /bin/foo --args');
This will set the user as 'joeuser' and the command as '/bin/foo --args'. Notice that if you pass bad data, the Event parser really can't help since the user (including '/<login-class>') syntax is now supported as of version 1.05:
$event = new Config::Crontab::Event( -data => '2 5 * * * /bin/foo --args', -system => 1 );
The Event object will have '/bin/foo' as its user and '--args' as its command. While things will usually work out when you write to file, you definitely won't get what you're expecting if you grok the command field.
Get or set the command part of a Event object.
Example:
$event->command('/bin/foo with args here');
Get or set whether the Event object is active. In practical terms, this simply inserts a pound sign before the datetime fields when accessing the dump method. It is only used implicitly in dump, but may be accessed separately whenever convenient.
print ( $event->active ? '' : '#' ) . $event->data . "\n";
is the same as:
print $event->dump . "\n";
Returns a formatted string of the Event object. This method is called implicitly when flushing to disk in Config::Crontab. It is not newline terminated.
Example:
print $event->dump . "\n";
This section describes Config::Crontab::Env objects (hereafter Env objects). A Env object is an abstracted way of dealing with crontab lines that look like any of the following (see crontab(5)):
name = value
From crontab(5):
the spaces around the equal-sign (=) are optional, and any subsequent non-leading spaces in value will be part of the value assigned to name. The value string may be placed in quotes (single or double, but matching) to preserve leading or trailing blanks. The name string may also be placed in quote (single or double, but matching) to preserve leading, traling or inner blanks.
Like Event objects, Env objects may be active or inactive, the difference being an inactive Env object is commented out:
#FOO=bar
Given the following crontab environment line:
MAILTO=joe
we define the following parts of the Env object:
MAILTO = joe ====== ============ ===== name (not stored) value
These and other methods for accessing and manipulating Event objects are described in subsequent sections.
Creates a new Env object. You may create Env objects any of the following ways:
$env = new Config::Crontab::Env;
$env = new Config::Crontab::Env( -value => 'joe' );
$env = new Config::Crontab::Env( -name => 'FOO', -value => 'blech' );
Constructor attributes available in the new method take the same arguments as their method counterparts (described below), except that the names of the attributes must have a hyphen ('-') prepended to the attribute name (e.g., 'value' becomes '-value'). The following is a list of attributes available to the new method:
Each of these attributes corresponds directly to its similarly-named method.
Examples:
## use name and value $env = new Config::Crontab::Env( -name => 'MAILTO', -value => 'joe@schmoe.org' ); ## parse a whole string $env = new Config::Crontab::Env( -data => 'MAILTO=joe@schmoe.org' ); ## use name and value to create an inactive object $env = new Config::Crontab::Env( -active => 0, -name => 'MAILTO', -value => 'mike', ); $env->active(1); ## now activate it ## create an object that will unset the environment variable $env = new Config::Crontab::Env( -name => 'MAILTO' ); ## another way $env = new Config::Crontab::Env( -data => 'MAILTO=' ); ## yet another way $env = new Config::Crontab::Env; $env->name('MAILTO');
If bogus data is passed to the constructor, it will return undef instead of an object reference. If there is a possiblility of poorly formatted data going into the constructor, you should check the object variable for definedness before using it.
If the -data attribute is present in the constructor when other attributes are also present, the -data attribute will override all other attributes.
Get or set the object name.
Example:
$env->name('MAILTO');
Get or set the value associated with the name attribute.
Example:
$env->value('tom@tomorrow.org'); print "The value for " . $env->name . " is " . $env->value . "\n";
Get or set a raw environment line.
Example:
$env->data('MAILTO=foo@bar.org'); print "This object says: " . $env->data . "\n";
Get or set whether the Env object is active. In practical terms, this simply inserts a pound sign before the name field when accessing the dump method. It may be used whenever convenient.
print $env->dump . "\n";
is the same as:
print ( $env->active ? '' : '#' ) . $env->data . "\n";
Returns a formatted string of the Env object. This method is called implicitly when flushing to disk in Config::Crontab. It is not newline terminated.
print $env->dump . "\n";
This section describes Config::Crontab::Comment objects (hereafter Comment objects). A Comment object is an abstracted way of dealing with crontab comments and whitespace (blank lines or lines that consist only of whitespace).
Creates a new Comment object. You may create Comment objects in any of the following ways:
$comment = new Config::Crontab::Comment;
$comment = new Config::Crontab::Comment( -data => '# this is a comment' );
and an alternative:
$comment = new Config::Crontab::Comment( '# this is a constructor shortcut' );
Constructor attributes available in the new method take the same arguments as their method counterparts (described below), except that the names of the attributes must have a hyphen ('-') prepended to the attribute name (e.g., 'data' becomes '-data'). The following is a list of attributes available to the new method:
Each of these attributes corresponds directly to its similarly-named method.
Examples:
## using data $comment = new Config::Crontab::Comment( -data => '## a nice comment' ); ## using data method $comment = new Config::Crontab::Comment; $comment->data('## hi Mom!');
If bogus data is passed to the constructor, it will return undef instead of an object reference. If there is a possiblility of poorly formatted data going into the constructor, you should check the object variable for definedness before using it.
As a shortcut, you may omit the -data label and simply pass the comment itself:
$comment = new Config::Crontab::Comment('## this space for rent or lease');
Get or set a comment.
Example:
$comment->data('## this is not the comment you are looking for');
Returns a formatted string of the Comment object. This method is called implicitly when flushing to disk in Config::Crontab. It is not newline terminated.
This means that if you use Config::Crontab to edit a user's crontab file, those three headers will be added to the Config::Crontab object, and written back out again, and crontab(1) will add its own comments, effectively adding 3 comment lines each time you edit the crontab.
You may use this little heuristic as a starting point for stripping those comments:
my $ct = new Config::Crontab; $ct->read; ## make "crontab -l | crontab -" idempotent for Debian for my $line ( grep { defined } ($ct->select(-type => 'comment'))[0..2] ) { if( $line->data =~ qr(^# (?:DO NOT EDIT|[\(]\S+ installed|[\(]Cron version)) ) { $ct->remove($line); } } ... $ct->write;
$ct->last( new Config::Crontab::Event(-data => '1 2 3 4 5 /bin/friday') );
This doesn't do anything (and shouldn't). You should be adding Block objects to the Crontab object instead:
$block->last(new Config::Crontab::Event(-data => '1 2 3 4 5 /bin/friday')); $ct->last($block);
or the slightly more economical:
$ct->last( new Config::Crontab::Block(-data => '1 2 3 4 5 /bin/friday') );
This is nice since the Block constructor parses its -data parameter as raw data and creates all the necessary objects to populate itself. The downside of this last approach is that you don't get a handle to your block if you need to make later changes. It can be easily got, however, since we appended it to the end (using last) of the Crontab object:
$block = ($ct->blocks)[-1];
Config::Crontab will support SysV-syntax since it is a proper subset of Vixie cron syntax, but you will need to necessarily perform your own syntax checking and omit elements unique to Vixie cron in your UI.
cron(8), crontab(1), crontab(5)
Scott Wiersdorf, <scott@perlcode.org>
Copyright (C) 2007 by Scott Wiersdorf
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.
2022-10-22 | perl v5.36.0 |