Adding upstream version 4.0~a1.
[debian-live-boot.git] / scripts / boot.sh
blob67585f9c9558795a5bc2c6fb3cc9e4f3c01d43f9
1 #!/bin/sh
3 # set -e
5 # Reading configuration file from filesystem and live-media
6 for _FILE in /etc/live/boot.conf /etc/live/boot/*
7 do
8 if [ -e "${_FILE}" ]
9 then
10 . "${_FILE}"
12 done
14 for _SCRIPT in /lib/live/boot/????-*
16 if [ -e "${_SCRIPT}" ]
17 then
18 . ${_SCRIPT}
20 done