initial commit

This commit is contained in:
Franzi 2021-11-26 19:45:23 +01:00
commit 35a1d52840
Signed by: kunsi
GPG key ID: 12E3D2136B818350
20 changed files with 238 additions and 0 deletions

8
groups/all.py Normal file
View file

@ -0,0 +1,8 @@
groups['all'] = {
'member_patterns': {
r".*",
},
'subgroups': {
'linux',
},
}

42
groups/os.py Normal file
View 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,)
}