X-Git-Url: http://git.grml.org/?p=live-boot-grml.git;a=blobdiff_plain;f=frontend%2Flive-boot;fp=frontend%2Flive-boot;h=67585f9c9558795a5bc2c6fb3cc9e4f3c01d43f9;hp=0000000000000000000000000000000000000000;hb=0aa07bd386f516176364e710e8b9132036c72986;hpb=9bb62c8a50e9e92b0e0d637c624d364be6a911ca diff --git a/frontend/live-boot b/frontend/live-boot new file mode 100755 index 0000000..67585f9 --- /dev/null +++ b/frontend/live-boot @@ -0,0 +1,20 @@ +#!/bin/sh + +# set -e + +# Reading configuration file from filesystem and live-media +for _FILE in /etc/live/boot.conf /etc/live/boot/* +do + if [ -e "${_FILE}" ] + then + . "${_FILE}" + fi +done + +for _SCRIPT in /lib/live/boot/????-* +do + if [ -e "${_SCRIPT}" ] + then + . ${_SCRIPT} + fi +done