21 lines
364 B
Python
21 lines
364 B
Python
defaults = {
|
|
'apt': {
|
|
'packages': {
|
|
'nfs-common': {},
|
|
},
|
|
},
|
|
'pacman': {
|
|
'packages': {
|
|
'nfs-utils': {},
|
|
},
|
|
},
|
|
}
|
|
|
|
if node.has_bundle('telegraf'):
|
|
defaults['telegraf'] = {
|
|
'input_plugins': {
|
|
'builtin': {
|
|
'nfsclient': [{}],
|
|
},
|
|
},
|
|
}
|