diff options
author | Daniel Baumann <daniel@debian.org> | 2012-08-14 20:48:41 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-08-14 20:48:43 +0200 |
commit | cdece4c8e50051e790d657b1ff9f090ed4737907 (patch) | |
tree | a18a9052797963ebff6ec3d7afbd0b6c69682c56 /backends/initramfs-tools | |
parent | eb77833cf3f40583fe02dad42b667cc6b091f2c3 (diff) | |
download | live-boot-cdece4c8e50051e790d657b1ff9f090ed4737907.tar.gz live-boot-cdece4c8e50051e790d657b1ff9f090ed4737907.zip |
Using /etc/live/boot/*.conf instead of /etc/live/boot.d/*.conf and /live/image/live/boot/*.conf instead of /live/image/live/boot.d/*.conf for consistency reasons.
Diffstat (limited to 'backends/initramfs-tools')
-rwxr-xr-x | backends/initramfs-tools/live.hook | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/initramfs-tools/live.hook b/backends/initramfs-tools/live.hook index 86ef117..00da049 100755 --- a/backends/initramfs-tools/live.hook +++ b/backends/initramfs-tools/live.hook @@ -12,9 +12,9 @@ then . /etc/live/boot.conf fi -if ls /etc/live/boot.d/*.conf > /dev/null 2>&1 +if ls /etc/live/boot/* > /dev/null 2>&1 then - for _FILE in /etc/live/boot.d/*.conf + for _FILE in /etc/live/boot/* do . ${_FILE} done |