bundles/pppd: automatically add interface entry for ignored interface
This commit is contained in:
parent
86990b92ea
commit
e8d24bc363
2 changed files with 13 additions and 10 deletions
|
@ -28,6 +28,19 @@ defaults = {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@metadata_reactor.provides(
|
||||||
|
'interfaces',
|
||||||
|
)
|
||||||
|
def ignore_interface(metadata):
|
||||||
|
return {
|
||||||
|
'interfaces': {
|
||||||
|
metadata.get('pppd/interface'): {
|
||||||
|
'ignore': True,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@metadata_reactor.provides(
|
@metadata_reactor.provides(
|
||||||
'icinga2_api/pppd/services',
|
'icinga2_api/pppd/services',
|
||||||
)
|
)
|
||||||
|
|
|
@ -26,16 +26,6 @@ nodes['home.router'] = {
|
||||||
'172.19.138.1/24',
|
'172.19.138.1/24',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'enp1s0.100': {
|
|
||||||
'ignore': True,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'apt': {
|
|
||||||
'packages': {
|
|
||||||
# for telegraf
|
|
||||||
'snmp': {},
|
|
||||||
'snmp-mibs-downloader': {},
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
'backups': {
|
'backups': {
|
||||||
'exclude_from_backups': True,
|
'exclude_from_backups': True,
|
||||||
|
|
Loading…
Reference in a new issue