X-Git-Url: https://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=scripts%2Fgrml-live;h=ee7fbdd06388534eaf3e9aa732ff83bfb91a8fe5;hp=eca49d9ec71da5b8f4c3eb2b3e8769cf46622757;hb=9dc51d74f26d10d61130c86a0f3369c3f65970b7;hpb=975b72b9779109b2d9773d112bde81ff4fa9569b diff --git a/scripts/grml-live b/scripts/grml-live index eca49d9..ee7fbdd 100755 --- a/scripts/grml-live +++ b/scripts/grml-live @@ -1,12 +1,29 @@ #!/bin/zsh # Filename: grml-live -# Purpose: +# Purpose: build script for creating grml live-cd # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Thu Feb 08 21:06:07 CET 2007 +# Latest change: Thu Feb 08 22:35:43 CET 2007 ################################################################################ -echo TODO +LANG=C +LC_ALL=C + +DEBUG=1 # be more verbose on stdout? +DEBUG_SYSLOG=1 # log actions to syslog? + +# functions +FUNCTIONSFILE='functions.sh' + +for file in $FUNCTIONSFILE /etc/grml/lsb-functions /etc/grml/script-functions ; do + [[ -r $FUNCTIONSFILE ]] && source $file || { print "Reading $file failed, fatal error, exiting." ; exit 1 } +done + +trap bailout 1 2 3 15 + +# main execution +debug "executing cmdline_options" ; cmdline_options ## END OF FILE ################################################################# +# vim: ai tw=80 ft=zsh expandtab