57 lines
1.5 KiB
Plaintext
57 lines
1.5 KiB
Plaintext
|
#! /usr/bin/perl -w
|
||
|
|
||
|
use esmith::Build::CreateLinks qw(:all);
|
||
|
my $event = "smeserver-docker-update";
|
||
|
|
||
|
|
||
|
use esmith::Build::CreateLinks qw(:all);
|
||
|
|
||
|
# our event specific for updating with yum without reboot
|
||
|
$event = "smeserver-docker-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
|
||
|
))
|
||
|
|
||
|
{
|
||
|
templates2events($file, $event);
|
||
|
}
|
||
|
|
||
|
foreach my $file (qw(
|
||
|
/etc/docker/daemon.json
|
||
|
/usr/lib/systemd/system/docker.service.d/50koozali.conf
|
||
|
))
|
||
|
{
|
||
|
templates2events($file, qw(
|
||
|
post-upgrade
|
||
|
console-save
|
||
|
bootstrap-console-save
|
||
|
smeserver-docker-update
|
||
|
));
|
||
|
}
|
||
|
|
||
|
#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("smeserver-docker-update", $event, "60");
|
||
|
|
||
|
# Event to just update the compose file
|
||
|
$event = "smeserver-docker-compose-update";
|
||
|
|
||
|
foreach my $file (qw(
|
||
|
/home/e-smith/files/docker/configs/docker-compose.yml
|
||
|
|
||
|
))
|
||
|
{
|
||
|
templates2events($file, $event);
|
||
|
}
|
||
|
|
||
|
safe_touch ("root/etc/e-smith/templates/etc/docker/daemon.json/template-begin");
|
||
|
safe_touch ("root/etc/e-smith/templates/usr/lib/systemd/system/docker.service.d/50koozali.conf/template-begin");
|
||
|
safe_touch ("root/etc/e-smith/templates/home/e-smith/files/docker/configs/docker-compose.yml/template-begin");
|