wip
This commit is contained in:
parent
d9f3474977
commit
c9297d2b37
4 changed files with 21 additions and 3 deletions
|
@ -36,6 +36,8 @@ def systemd_networkd_networks(metadata):
|
||||||
},
|
},
|
||||||
'Network': {
|
'Network': {
|
||||||
'DHCP': 'no',
|
'DHCP': 'no',
|
||||||
|
'IPForward': 'yes',
|
||||||
|
'IPMasquerade': 'yes',
|
||||||
'IPv6AcceptRA': 'no',
|
'IPv6AcceptRA': 'no',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
6
groups/applications/nextcloud.py
Normal file
6
groups/applications/nextcloud.py
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
'bundles': [
|
||||||
|
'nextcloud',
|
||||||
|
'php',
|
||||||
|
],
|
||||||
|
}
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
'hostname': '10.0.0.2',
|
'hostname': '10.0.0.2',
|
||||||
'groups': [
|
'groups': [
|
||||||
'debian-10',
|
|
||||||
'archive',
|
'archive',
|
||||||
|
'debian-10',
|
||||||
|
# 'nextcloud',
|
||||||
],
|
],
|
||||||
'bundles': [
|
'bundles': [
|
||||||
'gitea',
|
'gitea',
|
||||||
'nextcloud',
|
|
||||||
'postgresql',
|
'postgresql',
|
||||||
'wireguard',
|
'wireguard',
|
||||||
],
|
],
|
||||||
|
@ -27,6 +27,6 @@
|
||||||
'peers': {
|
'peers': {
|
||||||
'htz.mails': {},
|
'htz.mails': {},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -88,6 +88,16 @@
|
||||||
'home.server': {},
|
'home.server': {},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
'systemd-networkd': {
|
||||||
|
'networks': {
|
||||||
|
'wg0': {
|
||||||
|
'Route#10.0.0.0/24': {
|
||||||
|
'Gateway': '172.19.136.2',
|
||||||
|
'Destination': '10.0.0.0/24',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
'zfs': {
|
'zfs': {
|
||||||
'pools': {
|
'pools': {
|
||||||
'tank': {
|
'tank': {
|
||||||
|
|
Loading…
Reference in a new issue