mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-31 14:37:59 +00:00
Merge branch 'master' of git://github.com/OpenELEC/OpenELEC.tv into openelec-next
This commit is contained in:
commit
d9c97e14fa
@ -26,5 +26,5 @@
|
|||||||
wait_for_network
|
wait_for_network
|
||||||
|
|
||||||
progress "mounting Network shares"
|
progress "mounting Network shares"
|
||||||
netmount
|
netmount > /dev/null 2>&1
|
||||||
)&
|
)&
|
||||||
|
@ -39,13 +39,14 @@ IFS="
|
|||||||
mkdir -p $MOUNTPOINT
|
mkdir -p $MOUNTPOINT
|
||||||
case "$SERVICE" in
|
case "$SERVICE" in
|
||||||
afp)
|
afp)
|
||||||
mount_afp afp://$OPTIONS@$SHARE "$MOUNTPOINT" > /dev/null 2>&1 &
|
sleep 1
|
||||||
|
mount_afp afp://$OPTIONS@$SHARE "$MOUNTPOINT"
|
||||||
;;
|
;;
|
||||||
cifs)
|
cifs)
|
||||||
mount.cifs "$SHARE" "$MOUNTPOINT" -o "$OPTIONS" > /dev/null 2>&1 &
|
mount.cifs "$SHARE" "$MOUNTPOINT" -o "$OPTIONS" &
|
||||||
;;
|
;;
|
||||||
nfs)
|
nfs)
|
||||||
mount.nfs "$SHARE" "$MOUNTPOINT" > /dev/null 2>&1 &
|
mount.nfs "$SHARE" "$MOUNTPOINT" &
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
Loading…
x
Reference in New Issue
Block a user