wip
This commit is contained in:
parent
941aea5642
commit
c867fe5ff0
5 changed files with 27 additions and 2 deletions
0
bundles/backup/files/backup_all
Normal file
0
bundles/backup/files/backup_all
Normal file
18
bundles/backup/files/backup_path
Normal file
18
bundles/backup/files/backup_path
Normal 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
|
|
@ -1,4 +1,9 @@
|
|||
defaults = {
|
||||
'apt': {
|
||||
'packages': {
|
||||
'rsync': {},
|
||||
},
|
||||
},
|
||||
'backup': {
|
||||
'server': None,
|
||||
'paths': [],
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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': {},
|
||||
|
|
Loading…
Reference in a new issue