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 = {
|
defaults = {
|
||||||
|
'apt': {
|
||||||
|
'packages': {
|
||||||
|
'rsync': {},
|
||||||
|
},
|
||||||
|
},
|
||||||
'backup': {
|
'backup': {
|
||||||
'server': None,
|
'server': None,
|
||||||
'paths': [],
|
'paths': [],
|
||||||
|
|
|
@ -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:
|
||||||
|
|
|
@ -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': {},
|
||||||
|
|
Loading…
Reference in a new issue