move groups around
This commit is contained in:
parent
5419bf31fb
commit
daa90a4668
16 changed files with 80 additions and 61 deletions
52
groups/os.py
52
groups/os.py
|
@ -10,3 +10,55 @@ groups['raspberry'] = {
|
|||
},
|
||||
},
|
||||
}
|
||||
|
||||
groups['linux'] = {
|
||||
'subgroups': {
|
||||
'debian',
|
||||
'raspberry',
|
||||
},
|
||||
'bundles': {
|
||||
'apt',
|
||||
'backup-client',
|
||||
'cron',
|
||||
'hostname',
|
||||
'openssh',
|
||||
'postfix',
|
||||
'sshmon',
|
||||
'sudo',
|
||||
'systemd',
|
||||
'systemd-networkd',
|
||||
'users',
|
||||
},
|
||||
'metadata': {
|
||||
'apt': {
|
||||
'unattended-upgrades': {
|
||||
'mail': 'hostmaster@kunsmann.eu',
|
||||
},
|
||||
},
|
||||
'backup-client': {
|
||||
'server': 'franzi-home.kunbox.net:2022',
|
||||
},
|
||||
},
|
||||
'pip_command': 'pip3',
|
||||
}
|
||||
|
||||
groups['debian'] = {
|
||||
'subgroups': {
|
||||
'debian-buster',
|
||||
'debian-bullseye',
|
||||
'debian-sid',
|
||||
},
|
||||
'os': 'debian'
|
||||
}
|
||||
|
||||
groups['debian-buster'] = {
|
||||
'os_version': (10,)
|
||||
}
|
||||
|
||||
groups['debian-bullseye'] = {
|
||||
'os_version': (11,)
|
||||
}
|
||||
|
||||
groups['debian-sid'] = {
|
||||
'os_version': (11,)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue