photoprism/scripts/dist/install-davfs.sh

14 lines
241 B
Bash
Raw Normal View History

#!/usr/bin/env bash
# abort if the user is not root
if [[ $(id -u) != "0" ]]; then
echo "Usage: run ${0##*/} as root" 1>&2
exit 1
fi
echo "Installing WebDAV filesystem driver..."
apt-get update
apt-get -qq install davfs2
echo "Done."