2024-09-07 12:14:51 +02:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
|
|
|
|
use esmith::Build::CreateLinks qw(:all);
|
|
|
|
|
|
|
|
my $event = 'smeserver-collabora-update';
|
|
|
|
|
|
|
|
event_actions($event, qw(
|
|
|
|
initialize-default-databases 00
|
|
|
|
smeserver-collabora-conf 20
|
|
|
|
systemd-default 88
|
|
|
|
systemd-reload 89
|
|
|
|
));
|
|
|
|
|
|
|
|
event_templates($event, qw(
|
|
|
|
/etc/httpd/conf/httpd.conf
|
|
|
|
/etc/rsyslog.conf
|
|
|
|
));
|
|
|
|
|
|
|
|
event_services($event, qw(
|
2025-01-27 05:44:45 +01:00
|
|
|
httpd-e-smith reload
|
2024-09-07 12:14:51 +02:00
|
|
|
coolwsd restart
|
2025-01-27 05:44:45 +01:00
|
|
|
php81-php-fpm reload-or-restart
|
2024-09-07 12:14:51 +02:00
|
|
|
rsyslog restart
|
|
|
|
));
|
|
|
|
|
|
|
|
$event = 'smeserver-nextcloud-update';
|
|
|
|
event_actions($event, qw(
|
|
|
|
smeserver-collabora-conf 70
|
|
|
|
));
|
|
|
|
|