cdist-contrib/type/__borg_repo/manifest

21 lines
303 B
Plaintext
Raw Normal View History

#!/bin/sh
os="$(cat "${__global:?}"/explorer/os)"
case "$os" in
2021-10-04 09:47:19 +00:00
"alpine"|"ubuntu")
borg_package=borgbackup
;;
*)
echo "__borg_repo is not yet implemented for os $os. Aborting." >&2;
exit 1;
esac
__package "$borg_package"
if [ -f "${__object:?}/parameter/owner" ];
then
__package sudo
fi
2021-10-04 09:47:19 +00:00