Replace various mentionings of scripts with components.
[live-boot-grml.git] / frontend / live-boot
1 #!/bin/sh
2
3 # set -e
4
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}"
11         fi
12 done
13
14 for _COMONENT in /lib/live/boot/????-*
15 do
16         if [ -e "${_COMONENT}" ]
17         then
18                 . ${_COMONENT}
19         fi
20 done