diff options
author | Bill Nottingham <notting@redhat.com> | 2010-08-02 17:47:03 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2010-08-02 17:47:03 -0400 |
commit | e127d5bcfe2e0175e88e8afdd644ee05a22538a5 (patch) | |
tree | 7bfcabddabaf005dd64f66360945f07feecb36c2 /rc.d | |
parent | ce28b8c214c0b4eb7bb35dda38ae5f451b7c1c56 (diff) | |
download | initscripts-e127d5bcfe2e0175e88e8afdd644ee05a22538a5.tar initscripts-e127d5bcfe2e0175e88e8afdd644ee05a22538a5.tar.gz initscripts-e127d5bcfe2e0175e88e8afdd644ee05a22538a5.tar.bz2 initscripts-e127d5bcfe2e0175e88e8afdd644ee05a22538a5.tar.xz initscripts-e127d5bcfe2e0175e88e8afdd644ee05a22538a5.zip |
More typos!
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/init.d/halt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/init.d/halt b/rc.d/init.d/halt index bd89efcc..a19c76f6 100755 --- a/rc.d/init.d/halt +++ b/rc.d/init.d/halt @@ -170,7 +170,7 @@ kill -TERM 1 # Remount read only anything that's left mounted. # echo $"Remounting remaining filesystems readonly" -mount | awk '{ print $1,$3 }' | while read $dev $dir; do +mount | awk '{ print $1,$3 }' | while read dev dir; do fstab-decode mount -n -o ro,remount $dev $dir done |