bundlewrap/bundles/lldp/items.py
Sophie Schiller a01c28da21
Some checks failed
kunsi/bundlewrap/pipeline/head There was a failure building this commit
various bundles: fix dependencies
2022-02-18 22:18:44 +01:00

29 lines
484 B
Python

directories = {
'/etc/lldpd.d': {
'purge': True,
'triggers': {
'svc_systemd:lldpd:restart',
},
},
}
files = {
'/etc/lldpd.conf': {
'delete': True,
},
'/etc/lldpd.d/bundlewrap.conf': {
'content_type': 'mako',
'triggers': {
'svc_systemd:lldpd:restart',
},
},
}
svc_systemd = {
'lldpd': {
'needs': {
'file:/etc/lldpd.d/bundlewrap.conf',
},
},
}