16 lines
No EOL
311 B
Bash
Executable file
16 lines
No EOL
311 B
Bash
Executable file
#!/bin/bash
|
|
|
|
PATH="/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/scripts"
|
|
|
|
# abort if not executed as 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." |