Mount video directory read-only.

This commit is contained in:
DragonMinded 2016-02-02 05:22:42 +00:00
parent 0e1c03c7af
commit f4991cbb97
1 changed files with 2 additions and 2 deletions

View File

@ -7,12 +7,12 @@ for device in /sys/block/*/device; do
if echo $(readlink -f "$device") | egrep -q "usb" ; then
disk=$(echo "$device" | cut -f4 -d/)
# Try the disk first.
if sudo mount -t auto /dev/$disk ${HOMEDIR}/videos 2> /dev/null ; then
if sudo mount -t auto -o ro /dev/$disk ${HOMEDIR}/videos 2> /dev/null ; then
echo "Mounted /dev/$disk to ${HOMEDIR}/videos"
exit
fi
# Try the first partition.
if sudo mount -t auto /dev/${disk}1 ${HOMEDIR}/videos 2> /dev/null ; then
if sudo mount -t auto -o ro /dev/${disk}1 ${HOMEDIR}/videos 2> /dev/null ; then
echo "Mounted /dev/${disk}1 to ${HOMEDIR}/videos"
exit
fi