make some bundles arch-compatible, more default packages for arch
This commit is contained in:
parent
c136c33a58
commit
5a182fadef
12 changed files with 170 additions and 35 deletions
|
@ -21,13 +21,6 @@ users = {
|
|||
},
|
||||
}
|
||||
|
||||
pkg_apt = {
|
||||
'gawk': {}, # needed by check_ram
|
||||
'libwww-perl': {}, # needed by check_nginx_status
|
||||
'sysstat': {}, # needed by check_cpu_stats
|
||||
'monitoring-plugins': {},
|
||||
}
|
||||
|
||||
with open(join(repo.path, 'data', 'sshmon', 'sshmon.pub'), 'r') as fp:
|
||||
pubkey = fp.read().strip()
|
||||
|
||||
|
|
|
@ -3,7 +3,11 @@ from re import sub
|
|||
defaults = {
|
||||
'apt': {
|
||||
'packages': {
|
||||
'gawk': {}, # needed by check_ram
|
||||
'libwww-perl': {}, # needed by check_nginx_status
|
||||
'monitoring-plugins': {},
|
||||
'python3-requests': {},
|
||||
'sysstat': {}, # needed by check_cpu_stats
|
||||
},
|
||||
},
|
||||
'icinga2_api': {
|
||||
|
@ -23,6 +27,15 @@ defaults = {
|
|||
'sshmon',
|
||||
},
|
||||
},
|
||||
'pacman': {
|
||||
'packages': {
|
||||
'gawk': {},
|
||||
'perl-libwww': {},
|
||||
'monitoring-plugins': {},
|
||||
'python-requests': {},
|
||||
'sysstat': {},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue