summaryrefslogtreecommitdiff
path: root/bin/live-system
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2010-08-10 01:57:53 +0200
committerDaniel Baumann <daniel@debian.org>2011-03-09 17:58:08 +0100
commit52dcef518bdb95605670b8dc12257057bf7a2dc0 (patch)
tree638f1c1ebb55ebcc0363eca6076bc7c379e568cf /bin/live-system
parent432f4b1dfead12040d21d15fd2f3ecc033ac5ca3 (diff)
downloadlive-boot-52dcef518bdb95605670b8dc12257057bf7a2dc0.tar.gz
live-boot-52dcef518bdb95605670b8dc12257057bf7a2dc0.zip
Adding debian version 3.0~a1-1.
Diffstat (limited to 'bin/live-system')
-rwxr-xr-xbin/live-system49
1 files changed, 0 insertions, 49 deletions
diff --git a/bin/live-system b/bin/live-system
deleted file mode 100755
index 026ab64..0000000
--- a/bin/live-system
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/sh
-
-# Redirect stdout to stderr
-exec 1>&2
-
-case "${1}" in
- -h|--help|-u|--usage)
- echo "live-system - determine if running system is a live system"
- echo
- echo "Usage: ${0} [-v|--verbose]"
-
- exit 2
- ;;
-
- -v|--verbose)
- _VERBOSE="true"
- ;;
-esac
-
-[ "${_VERBOSE}" ] && echo -n "Checking for live-system... "
-
-if [ ! -e /proc/cmdline ]
-then
- echo "E: /proc/cmdline - No such file."
- exit 2
-fi
-
-if grep -qs boot=live /proc/cmdline
-then
- [ "${_VERBOSE}" ] && echo -n " yes, this is a live system"
-
- if [ -d /live/image/install ]
- then
- if ls /live/image/install/pool/main/l/live-installer/live-installer_*.udeb > /dev/null 2>&1
- then
- [ "${_VERBOSE}" ] && echo " with live-installer support."
- else
- [ "${_VERBOSE}" ] && echo " without live-installer support."
- fi
- else
- [ "${_VERBOSE}" ] && echo "without installer support."
- fi
-
- exit 0
-else
- [ "${_VERBOSE}" ] && echo " no, this is not a live system."
-
- exit 1
-fi