35 lines
1.1 KiB
Perl
35 lines
1.1 KiB
Perl
#!/usr/bin/perl -w
|
|
|
|
use esmith::Build::CreateLinks qw(:all);
|
|
|
|
#service_link_enhanced("arpwatch", "S99", "7");
|
|
#service_link_enhanced("arpwatch", "K10", "6");
|
|
#service_link_enhanced("arpwatch", "K10", "0");
|
|
|
|
#safe_touch("root/var/lib/arpwatch/arp.dat");
|
|
|
|
templates2events("/etc/sysconfig/arpwatch", "bootstrap-console-save");
|
|
|
|
# our event specific for updating with yum without reboot
|
|
$event = "smeserver-arpwatch-update";
|
|
#add here the path to your templates needed to expand
|
|
#see the /etc/systemd/system-preset/49-koozali.preset should be present for systemd integration on all you yum update event
|
|
|
|
foreach my $file (qw(
|
|
/etc/systemd/system-preset/49-koozali.preset
|
|
/etc/sysconfig/arpwatch
|
|
/etc/logrotate.d/arpwatch
|
|
/etc/rsyslog.conf
|
|
))
|
|
{
|
|
templates2events( $file, $event );
|
|
}
|
|
|
|
#action needed in case we have a systemd unit
|
|
event_link("systemd-default", $event, "10");
|
|
event_link("systemd-reload", $event, "50");
|
|
#action specific to this package
|
|
#event_link("conf-timezone", $event, "30");
|
|
#services we need to restart
|
|
safe_symlink("restart", "root/etc/e-smith/events/$event/services2adjust/arpwatch");
|