38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
|
#! /usr/bin/perl -w
|
||
|
use esmith::Build::CreateLinks qw(:all);
|
||
|
# our event specific for updating with yum without reboot
|
||
|
$event = 'smeserver-motd-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/profile.d/motd.sh
|
||
|
/etc/ssh/sshd_config
|
||
|
))
|
||
|
{
|
||
|
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('action', $event, '30');
|
||
|
#services we need to restart
|
||
|
safe_symlink('restart', "root/etc/e-smith/events/$event/services2adjust/sshd");
|
||
|
#and Server Manager panel link
|
||
|
#panel_link('somefunction', 'manager');
|
||
|
#Need some thought on when the templates should be expanded and when the action should be called.
|
||
|
foreach (qw(
|
||
|
/etc/profile.d/motd.sh
|
||
|
))
|
||
|
{templates2events("$_", qw(
|
||
|
post-upgrade
|
||
|
console-save
|
||
|
bootstrap-console-save
|
||
|
remoteaccess-update
|
||
|
));
|
||
|
}
|
||
|
|
||
|
1
|