summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/live16
1 files changed, 8 insertions, 8 deletions
diff --git a/scripts/live b/scripts/live
index eb04d27..5d5b978 100755
--- a/scripts/live
+++ b/scripts/live
@@ -1391,21 +1391,21 @@ find_livefs ()
{
timeout="${1}"
- # first look at the one specified in the command line
- if [ ! -z "${LIVE_MEDIA}" ]
+ # don't start autodetection before timeout has expired
+ if [ -n "${LIVE_MEDIA_TIMEOUT}" ]
then
- if check_dev "null" "${LIVE_MEDIA}" "skip_uuid_check"
+ if [ "${timeout}" -lt "${LIVE_MEDIA_TIMEOUT}" ]
then
- return 0
+ return 1
fi
fi
- # don't start autodetection before timeout has expired
- if [ -n "${LIVE_MEDIA_TIMEOUT}" ]
+ # first look at the one specified in the command line
+ if [ ! -z "${LIVE_MEDIA}" ]
then
- if [ "${timeout}" -lt "${LIVE_MEDIA_TIMEOUT}" ]
+ if check_dev "null" "${LIVE_MEDIA}" "skip_uuid_check"
then
- return 1
+ return 0
fi
fi