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 = {
'apt': {
'packages': {
'rsync': {},
},
},
'backup': {
'server': None,
'paths': [],

View file

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

View file

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