freescout timer timeout and stuff

This commit is contained in:
cronekorkn 2024-09-05 22:58:40 +02:00
parent 0eaed67334
commit 1f53ff63a9
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw
4 changed files with 33 additions and 4 deletions

View file

@ -41,6 +41,10 @@ actions = {
}, },
} }
# svc_systemd = {
# f'freescout-cron.service': {},
# }
# files = { # files = {
# '/opt/freescout/.env': { # '/opt/freescout/.env': {
# # https://github.com/freescout-helpdesk/freescout/blob/dist/.env.example # # https://github.com/freescout-helpdesk/freescout/blob/dist/.env.example

View file

@ -53,10 +53,31 @@ defaults = {
}, },
}, },
}, },
# 'systemd': {
# 'units': {
# f'freescout-cron.service': {
# 'Unit': {
# 'Description': 'Freescout Cron',
# 'After': 'network.target',
# },
# 'Service': {
# 'User': 'www-data',
# 'Nice': 10,
# 'ExecStart': f"/usr/bin/php /opt/freescout/artisan schedule:run"
# },
# 'Install': {
# 'WantedBy': {
# 'multi-user.target'
# }
# },
# }
# },
# },
'systemd-timers': { 'systemd-timers': {
'freescout-cron': { 'freescout-cron': {
'command': '/usr/bin/php /opt/freescout/artisan schedule:run', 'command': '/usr/bin/php /opt/freescout/artisan schedule:run',
'when': 'Minutely', 'when': '*-*-* *:*:00',
'RuntimeMaxSec': '600',
'user': 'www-data', 'user': 'www-data',
}, },
}, },
@ -70,6 +91,8 @@ defaults = {
} }
@metadata_reactor.provides( @metadata_reactor.provides(
'freescout/env/APP_URL', 'freescout/env/APP_URL',
) )

View file

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

View file

@ -1,10 +1,10 @@
{ {
'dummy': True, #'dummy': True,
'hostname': '159.69.117.89', 'hostname': '159.69.117.89',
'groups': [ 'groups': [
# 'backup', 'backup',
'debian-12', 'debian-12',
# 'monitored', 'monitored',
'webserver', 'webserver',
'freescout', 'freescout',
], ],