nc cron killmode process

This commit is contained in:
cronekorkn 2022-12-21 14:12:27 +01:00
parent 4663f7632b
commit 3ce2807d9f
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw
2 changed files with 3 additions and 0 deletions

View file

@ -82,6 +82,7 @@ defaults = {
'command': '/usr/bin/php -f /opt/nextcloud/cron.php',
'when': '*:0/5',
'user': 'www-data',
'kill_mode': 'process',
},
'nextcloud-rescan': {
'command': '/opt/nextcloud_rescan',

View file

@ -40,6 +40,8 @@ def systemd(metadata):
units[f'{name}.service']['Service']['WorkingDirectory'] = config['working_dir']
if config.get('success_exit_status'):
units[f'{name}.service']['Service']['SuccessExitStatus'] = config['success_exit_status']
if config.get('kill_mode'):
units[f'{name}.service']['Service']['KillMode'] = config['kill_mode']
services[f'{name}.timer'] = {}