- fix wrong service reload for apache [SME: 12505] - add requires coolwsd-deprecated
		
			
				
	
	
		
			31 lines
		
	
	
		
			629 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			629 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| #!/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(
 | |
|          httpd-e-smith reload
 | |
|                coolwsd restart
 | |
|          php81-php-fpm reload-or-restart
 | |
|                rsyslog restart
 | |
| ));
 | |
| 
 | |
| $event = 'smeserver-nextcloud-update';
 | |
| event_actions($event, qw(
 | |
|              smeserver-collabora-conf 70
 | |
| ));
 | |
| 
 |