diff options
| author | Daniel Baumann <daniel@debian.org> | 2011-01-01 17:42:13 +0100 |
|---|---|---|
| committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 17:54:32 +0100 |
| commit | 78af1b048b68521180e6bd1571bbc986cb52036c (patch) | |
| tree | cf95acf31ef2431ae540b0165f66f36699fd6cb3 /bin | |
| parent | 9c9a90ef6364a1b6ada490a6f7fac67570778b47 (diff) | |
| download | live-boot-78af1b048b68521180e6bd1571bbc986cb52036c.tar.gz live-boot-78af1b048b68521180e6bd1571bbc986cb52036c.zip | |
Adding live-system script from live-tools.
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/live-system | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/bin/live-system b/bin/live-system new file mode 100755 index 0000000..026ab64 --- /dev/null +++ b/bin/live-system @@ -0,0 +1,49 @@ +#!/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 |
