mirror of
https://github.com/shokinn/.files.git
synced 2025-01-19 05:22:25 +00:00
10 lines
254 B
Bash
Executable file
10 lines
254 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ $UID -ne 0 ]]; then
|
|
echo "You have to run this script as root!"
|
|
exit 1
|
|
fi
|
|
|
|
mount.cifs //storage.lan.c3voc.de/fuse /video/fuse -o rw,guest -o uid=phg
|
|
mount.cifs //storage.lan.c3voc.de/video /video/video -o rw,guest -o uid=phg
|