diff options
| author | maximilian attems <max@stro.at> | 2007-09-07 15:11:13 +0200 |
|---|---|---|
| committer | maximilian attems <max@stro.at> | 2007-09-07 15:11:13 +0200 |
| commit | c559ab5d603454e9d3281e4e399bf5cc9f0f1ce3 (patch) | |
| tree | 2b4475ab2f092d95cc0b9aedf10055f6ec578c51 | |
| parent | fd0b67f392bc351dacf6b29532fc478d1ff9f118 (diff) | |
| download | initramfs-tools-c559ab5d603454e9d3281e4e399bf5cc9f0f1ce3.tar.gz initramfs-tools-c559ab5d603454e9d3281e4e399bf5cc9f0f1ce3.zip | |
debian/script: Fix syntax of MODULES=dep block.
thanks madduck for reporting the error:
[: 39: -q: unexpected operator
| -rw-r--r-- | debian/changelog | 3 | ||||
| -rwxr-xr-x | debian/script | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index f479eb9..78a6922 100644 --- a/debian/changelog +++ b/debian/changelog @@ -16,8 +16,9 @@ initramfs-tools (0.91) UNRELEASED; urgency=low * scripts/{functions,nfs}: Split networking code in separate function. Thanks Vagrant Cascadian <vagrant+debianbugs@freegeek.org> for the patch. * update-initramfs: Don't check for ro /boot inside of a chroot. + * debian/script: Fix syntax of MODULES=dep block. - -- maximilian attems <maks@debian.org> Tue, 04 Sep 2007 11:34:15 +0200 + -- maximilian attems <maks@debian.org> Fri, 07 Sep 2007 15:10:11 +0200 initramfs-tools (0.90a) unstable; urgency=high diff --git a/debian/script b/debian/script index 3aaacd0..706a84d 100755 --- a/debian/script +++ b/debian/script @@ -32,7 +32,7 @@ if [ -r /etc/crypttab ]; then echo fi -if [ grep -q "MODULES=dep" /etc/initramfs-tools/initramfs.conf ]; then +if grep -q "MODULES=dep" /etc/initramfs-tools/initramfs.conf ; then echo "-- /sys/block" ls /sys/block echo |
