bundlewrap/bundles/redis/metadata.py
Franzi fd421bf6f8
All checks were successful
bundlewrap/pipeline/head This commit looks good
add bundle:redis, add redis support to pretalx
2021-01-29 15:58:54 +01:00

22 lines
446 B
Python

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:',
},
}
},
},
}