initial commit
This commit is contained in:
commit
35a1d52840
20 changed files with 238 additions and 0 deletions
8
groups/all.py
Normal file
8
groups/all.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
groups['all'] = {
|
||||
'member_patterns': {
|
||||
r".*",
|
||||
},
|
||||
'subgroups': {
|
||||
'linux',
|
||||
},
|
||||
}
|
42
groups/os.py
Normal file
42
groups/os.py
Normal file
|
@ -0,0 +1,42 @@
|
|||
groups['linux'] = {
|
||||
'subgroups': {
|
||||
'debian',
|
||||
},
|
||||
'bundles': {
|
||||
'basic',
|
||||
#'cron',
|
||||
'nftables',
|
||||
'openssh',
|
||||
#'postfix',
|
||||
#'sshmon',
|
||||
'sudo',
|
||||
'sysctl',
|
||||
'systemd',
|
||||
'systemd-networkd',
|
||||
#'telegraf',
|
||||
'users',
|
||||
},
|
||||
'metadata': {
|
||||
'apt': {
|
||||
'unattended-upgrades': {
|
||||
'mail': libs.defaults.hostmaster_email,
|
||||
},
|
||||
},
|
||||
},
|
||||
'pip_command': 'pip3',
|
||||
}
|
||||
|
||||
groups['debian'] = {
|
||||
'subgroups': {
|
||||
'debian-bullseye',
|
||||
},
|
||||
'bundles': {
|
||||
'apt',
|
||||
#'backup-client',
|
||||
},
|
||||
'os': 'debian',
|
||||
}
|
||||
|
||||
groups['debian-bullseye'] = {
|
||||
'os_version': (11,)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue