This commit is contained in:
mwiegand 2021-07-05 23:44:40 +02:00
parent b8127713d9
commit 275c6eb22b
4 changed files with 55 additions and 0 deletions

View file

@ -0,0 +1,21 @@
for name, config in node.metadata.get('systemd-timers').items():
files[f'/etc/systemd/system/{name}.timer'] = {
'content': repo.libs.systemd.generate_unitfile({
'Unit':{
'Description': f'{name} timer',
},
'Timer': {
'OnCalendar': config['when'],
'Unit': f'{name}.service',
},
'Install': {
'WantedBy': 'multi-user.target',
}
}),
'triggers': [
'action:systemd-reload',
f'svc_systemd:{name}:restart',
],
}
svc_systemd[f'{name}.timer'] = {}

View file

@ -0,0 +1,27 @@
defaults = {
'systemd-timers': {},
}
@metadata_reactor.provides(
'systemd/services',
)
def services(metadata):
return {
'systemd': {
'services': {
name: {
'content': {
'Unit':{
'Description': f'{name} timer service',
},
'Service': {
'ExecStart': config['command'],
},
},
'enabled': False,
'running': False,
} for name, config in metadata.get('systemd-timers').items()
},
},
}

View file

@ -6,5 +6,6 @@
'network',
'systemd',
'systemd-networkd',
'systemd-timers',
],
}

View file

@ -16,6 +16,12 @@
'zfs',
],
'metadata': {
'systemd-timers': {
'test1': {
'when': 'weekly',
'command': '/bin/ls',
},
},
'nextcloud': {
'hostname': 'cloud.sublimity.de',
'version': '21.0.0',