18 lines
685 B
PHP
18 lines
685 B
PHP
<?php
|
|
|
|
return [
|
|
'units' => [
|
|
['name' => 'nginx', 'action' => 'reload'],
|
|
['name' => 'postfix', 'action' => 'try-reload-or-restart'],
|
|
['name' => 'dovecot', 'action' => 'try-reload-or-restart'],
|
|
['name' => 'rspamd', 'action' => 'try-reload-or-restart'],
|
|
|
|
// nur drin lassen, wenn wirklich installiert:
|
|
['name' => 'opendkim', 'action' => 'try-reload-or-restart'],
|
|
['name' => 'opendmarc', 'action' => 'try-reload-or-restart'],
|
|
|
|
['name' => 'clamav-daemon', 'action' => 'try-reload-or-restart'],
|
|
['name' => 'redis-server', 'action' => 'try-reload-or-restart'],
|
|
],
|
|
];
|