12 lines
214 B
Plaintext
12 lines
214 B
Plaintext
|
#!/usr/bin/perl -w
|
||
|
|
||
|
use esmith::Build::CreateLinks qw(:all);
|
||
|
|
||
|
foreach $file (
|
||
|
qw( /etc/crontab ))
|
||
|
{
|
||
|
templates2events($file, qw(bootstrap-console-save email-update smeserver-qmail-notify-update));
|
||
|
}
|
||
|
|
||
|
exit 0
|