bundlewrap/bundles/backup/files/backup_path
mwiegand c867fe5ff0 wip
2021-06-23 23:56:41 +02:00

18 lines
262 B
Bash

#!/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