diff options
| author | maximilian attems <maks@debian.org> | 2007-06-11 00:42:05 +0200 |
|---|---|---|
| committer | maximilian attems <maks@debian.org> | 2007-06-11 00:42:05 +0200 |
| commit | ad5ae668b01884a4ef99d14bbfef7ce07f908801 (patch) | |
| tree | 6f8b2cdd70844b9c4cdab4307b1c0902b8e0e015 | |
| parent | ce60ba266ecf3724bede535b21cf61377ac52002 (diff) | |
| download | initramfs-tools-ad5ae668b01884a4ef99d14bbfef7ce07f908801.tar.gz initramfs-tools-ad5ae668b01884a4ef99d14bbfef7ce07f908801.zip | |
scripts/local: use simpler fstype invocation
compatible with etch released klibc
| -rw-r--r-- | debian/changelog | 4 | ||||
| -rw-r--r-- | scripts/local | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index d413936..be82239 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,7 +2,9 @@ initramfs-tools (0.89) unstable; urgency=low * initramfs.conf.5: Document ROOT hardcoding. - -- maximilian attems <maks@debian.org> Wed, 30 May 2007 13:25:36 +0200 + * scripts/local: Use simpler fstype invocation. + + -- maximilian attems <maks@debian.org> Mon, 11 Jun 2007 00:40:29 +0200 initramfs-tools (0.88) unstable; urgency=low diff --git a/scripts/local b/scripts/local index 459ba8d..429d1f6 100644 --- a/scripts/local +++ b/scripts/local @@ -12,7 +12,7 @@ get_fstype () if [ -x /lib/udev/vol_id ]; then FSTYPE=$(/lib/udev/vol_id -t "${FS}" 2> /dev/null) else - eval $(fstype < "${FS}" 2> /dev/null) + eval $(fstype "${FS}" 2> /dev/null) fi RET=$? |
