diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2013-06-24 21:44:41 +0200 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-06-24 21:44:41 +0200 |
commit | b14879f67399600c7330a384b0bfb9f13f349134 (patch) | |
tree | f6491fdd1f7b9db155a3bb0e7184610f1a581a95 /frontend | |
parent | a331218718282c5496ff062a0f6aa55908224862 (diff) | |
download | live-boot-b14879f67399600c7330a384b0bfb9f13f349134.tar.gz live-boot-b14879f67399600c7330a384b0bfb9f13f349134.zip |
Replace various mentionings of scripts with components.
Diffstat (limited to 'frontend')
-rwxr-xr-x | frontend/live-boot | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/live-boot b/frontend/live-boot index 67585f9..32d0a3b 100755 --- a/frontend/live-boot +++ b/frontend/live-boot @@ -11,10 +11,10 @@ do fi done -for _SCRIPT in /lib/live/boot/????-* +for _COMONENT in /lib/live/boot/????-* do - if [ -e "${_SCRIPT}" ] + if [ -e "${_COMONENT}" ] then - . ${_SCRIPT} + . ${_COMONENT} fi done |