This commit is contained in:
mwiegand 2021-06-23 23:56:41 +02:00
parent 941aea5642
commit c867fe5ff0
5 changed files with 27 additions and 2 deletions

View file

View file

@ -0,0 +1,18 @@
#!/bin/bash
PATH=$1
SERVER=$(jq -r .server < /etc/backup/config.json)
if zfs list -H -o mountpoint | grep -q "$PATH"
then
TYPE=zfs
elif test -d "$PATH"
then
TYPE=directory
elif test -f "$PATH"
then
TYPE=file
else
echo "UNKNOWN TYPE: $PATH"
exit 1
fi

View file

@ -1,4 +1,9 @@
defaults = { defaults = {
'apt': {
'packages': {
'rsync': {},
},
},
'backup': { 'backup': {
'server': None, 'server': None,
'paths': [], 'paths': [],

View file

@ -11,10 +11,11 @@ ListenPort=51820
# Peer ${peer} # Peer ${peer}
[WireGuardPeer] [WireGuardPeer]
PublicKey=${config['pubkey']} PublicKey=${config['pubkey']}
AllowedIPs=0.0.0.0/0
% if len(peers) == 1: # FIXME % if len(peers) == 1: # FIXME
AllowedIPs=${network} #AllowedIPs=${network}
% else: % else:
AllowedIPs=${','.join(sorted(config['ips']))} #AllowedIPs=${','.join(sorted(config['ips']))}
% endif % endif
PresharedKey=${config['psk']} PresharedKey=${config['psk']}
% if 'endpoint' in config: % if 'endpoint' in config:

View file

@ -22,6 +22,7 @@
'domain': 'git.sublimity.de', 'domain': 'git.sublimity.de',
}, },
'wireguard': { 'wireguard': {
# iptables -t nat -A POSTROUTING -o enp1s0f0 -j MASQUERADE
'my_ip': '172.19.136.1/22', 'my_ip': '172.19.136.1/22',
'peers': { 'peers': {
'htz.mails': {}, 'htz.mails': {},