diff options
author | maximilian attems <maks@debian.org> | 2007-08-25 19:11:44 +0200 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2007-08-25 19:11:44 +0200 |
commit | cd3e97b5b87380e8d1700c6f86d907ad40a1179d (patch) | |
tree | 824affeaa16435e9058bca2aab43823f2e1bd29d /scripts/local | |
parent | 6119c2636fc78af4049a5facc584325521ca19f8 (diff) | |
download | initramfs-tools-cd3e97b5b87380e8d1700c6f86d907ad40a1179d.tar.gz initramfs-tools-cd3e97b5b87380e8d1700c6f86d907ad40a1179d.zip |
scripts/local: small CodingStyle quote readonly variable
Diffstat (limited to 'scripts/local')
-rw-r--r-- | scripts/local | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/local b/scripts/local index 55d4c46..b55212e 100644 --- a/scripts/local +++ b/scripts/local @@ -101,7 +101,7 @@ mountroot () run_scripts /scripts/local-premount [ "$quiet" != "y" ] && log_end_msg - if [ ${readonly} = y ]; then + if [ "${readonly}" = "y" ]; then roflag=-r else roflag=-w |