lauv-aux-rpi: added option to use internal storage only.
This commit is contained in:
parent
cdd4e61144
commit
823ea58578
@ -2,13 +2,12 @@ mount_storage()
|
|||||||
{
|
{
|
||||||
echo "* Probing storage..."
|
echo "* Probing storage..."
|
||||||
|
|
||||||
bdev="/dev/sda1"
|
bdev="$1"
|
||||||
if ! [ -b "$bdev" ]; then
|
if ! [ -b "$bdev" ]; then
|
||||||
echo "* Device $bdev does not exist."
|
echo "* Device $bdev does not exist."
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mkdir -p "$cfg_lauv_storage_dir"
|
|
||||||
mount -o rw,relatime "$bdev" "$cfg_lauv_storage_dir" 2> /dev/null
|
mount -o rw,relatime "$bdev" "$cfg_lauv_storage_dir" 2> /dev/null
|
||||||
|
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -ne 0 ]; then
|
||||||
@ -104,8 +103,12 @@ stop_nfs_server()
|
|||||||
|
|
||||||
start()
|
start()
|
||||||
{
|
{
|
||||||
|
mkdir -p "$cfg_lauv_storage_dir"
|
||||||
|
|
||||||
# Removable storage.
|
# Removable storage.
|
||||||
try_mount_storage /dev/sda1
|
if [ "$cfg_lauv_storage" != "internal" ]; then
|
||||||
|
try_mount_storage /dev/sda1
|
||||||
|
fi
|
||||||
|
|
||||||
# FIXME: what to do if the above fails.
|
# FIXME: what to do if the above fails.
|
||||||
start_nfs_server
|
start_nfs_server
|
||||||
|
Reference in New Issue
Block a user