2022-07-23 13:16:10 +02:00
|
|
|
#!/usr/bin/env bash
|
2022-02-25 16:33:46 +01:00
|
|
|
|
2022-12-12 20:38:44 +01:00
|
|
|
# This installs the DavFS filesystem driver on Linux.
|
|
|
|
|
2022-07-23 13:08:24 +02:00
|
|
|
PATH="/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/scripts:$PATH"
|
2022-03-23 08:16:01 +01:00
|
|
|
|
2022-12-12 20:38:44 +01:00
|
|
|
# Abort if not executed as root.
|
2022-02-25 16:33:46 +01:00
|
|
|
if [[ $(id -u) != "0" ]]; then
|
|
|
|
echo "Usage: run ${0##*/} as root" 1>&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Installing WebDAV filesystem driver..."
|
|
|
|
|
2022-03-23 08:16:01 +01:00
|
|
|
apt-get update
|
|
|
|
apt-get -qq install davfs2
|
2022-02-25 16:33:46 +01:00
|
|
|
|
|
|
|
echo "Done."
|