freescout timer timeout and stuff
This commit is contained in:
parent
0eaed67334
commit
1f53ff63a9
4 changed files with 33 additions and 4 deletions
|
@ -41,6 +41,10 @@ actions = {
|
|||
},
|
||||
}
|
||||
|
||||
# svc_systemd = {
|
||||
# f'freescout-cron.service': {},
|
||||
# }
|
||||
|
||||
# files = {
|
||||
# '/opt/freescout/.env': {
|
||||
# # https://github.com/freescout-helpdesk/freescout/blob/dist/.env.example
|
||||
|
|
|
@ -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': {
|
||||
'freescout-cron': {
|
||||
'command': '/usr/bin/php /opt/freescout/artisan schedule:run',
|
||||
'when': 'Minutely',
|
||||
'when': '*-*-* *:*:00',
|
||||
'RuntimeMaxSec': '600',
|
||||
'user': 'www-data',
|
||||
},
|
||||
},
|
||||
|
@ -70,6 +91,8 @@ defaults = {
|
|||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@metadata_reactor.provides(
|
||||
'freescout/env/APP_URL',
|
||||
)
|
||||
|
|
|
@ -42,6 +42,8 @@ def systemd(metadata):
|
|||
units[f'{name}.service']['Service']['SuccessExitStatus'] = config['success_exit_status']
|
||||
if config.get('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'] = {}
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
'dummy': True,
|
||||
#'dummy': True,
|
||||
'hostname': '159.69.117.89',
|
||||
'groups': [
|
||||
# 'backup',
|
||||
'backup',
|
||||
'debian-12',
|
||||
# 'monitored',
|
||||
'monitored',
|
||||
'webserver',
|
||||
'freescout',
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue