add bundle:redis, add redis support to pretalx
All checks were successful
bundlewrap/pipeline/head This commit looks good

This commit is contained in:
Franzi 2021-01-29 15:58:54 +01:00
parent ce76430b4d
commit fd421bf6f8
Signed by: kunsi
GPG key ID: 12E3D2136B818350
5 changed files with 104 additions and 0 deletions

21
bundles/redis/metadata.py Normal file
View file

@ -0,0 +1,21 @@
defaults = {
'apt': {
'packages': {
'redis-server': {},
},
},
'backups': {
'paths': {
'/var/lib/redis',
},
},
'icinga2_api': {
'redis': {
'services': {
'REDIS PROCESS': {
'command_on_monitored_host': '/usr/lib/nagios/plugins/check_procs -C redis-server -c 1:',
},
}
},
},
}