diff options
author | Roy Marples <roy@marples.name> | 2007-11-28 15:45:03 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-11-28 15:45:03 +0000 |
commit | ac9279cc0d5a00bc17908b2914941186020cd3ce (patch) | |
tree | 850a4fe19917113e75bfd2e79d00b58208468503 /init.d.Linux/procfs | |
parent | 444f23e2d158389b22d40537fc9b027d9f575229 (diff) |
Massive whitespace cleanup
Diffstat (limited to 'init.d.Linux/procfs')
-rw-r--r-- | init.d.Linux/procfs | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/init.d.Linux/procfs b/init.d.Linux/procfs index 95190bbd..4a3778a3 100644 --- a/init.d.Linux/procfs +++ b/init.d.Linux/procfs @@ -44,7 +44,7 @@ start() { if [ -d /proc/bus/usb -a ! -e /proc/bus/usb/devices ]; then local usbfs=$(grep -Fow usbfs /proc/filesystems || grep -Fow usbdevfs /proc/filesystems) - if [ -n "${usbfs}" ] ; then + if [ -n "${usbfs}" ]; then ebegin "Mounting USB device filesystem (${usbfs})" local usbgid="$(getent group usb | \ sed -e 's/.*:.*:\(.*\):.*/\1/')" @@ -56,8 +56,8 @@ start() { fi # Setup Kernel Support for the NFS daemon status - if [ -d /proc/fs/nfsd ] && ! mountinfo -q /proc/fs/nfsd ; then - if grep -qs nfsd /proc/filesystems ; then + if [ -d /proc/fs/nfsd ] && ! mountinfo -q /proc/fs/nfsd; then + if grep -qs nfsd /proc/filesystems; then ebegin "Mounting nfsd filesystem" mount -t nfsd -o nodev,noexec,nosuid \ nfsd /proc/fs/nfsd @@ -66,8 +66,8 @@ start() { fi # Setup Kernel Support for miscellaneous Binary Formats - if [ -d /proc/sys/fs/binfmt_misc ] && ! mountinfo -q /proc/sys/fs/binfmt_misc ; then - if grep -qs binfmt_misc /proc/filesystems ; then + if [ -d /proc/sys/fs/binfmt_misc ] && ! mountinfo -q /proc/sys/fs/binfmt_misc; then + if grep -qs binfmt_misc /proc/filesystems; then ebegin "Mounting misc binary format filesystem" mount -t binfmt_misc -o nodev,noexec,nosuid \ binfmt_misc /proc/sys/fs/binfmt_misc @@ -76,8 +76,8 @@ start() { fi # Setup Kernel Support for securityfs - if [ -d /sys/kernel/security ] && ! mountinfo -q /sys/kernel/security ; then - if grep -qs securityfs /proc/filesystems ; then + if [ -d /sys/kernel/security ] && ! mountinfo -q /sys/kernel/security; then + if grep -qs securityfs /proc/filesystems; then ebegin "Mounting security filesystem" mount -t securityfs securityfs /sys/kernel/security \ -o nodev,noexec,nosuid @@ -86,8 +86,8 @@ start() { fi # Setup Kernel Support for debugfs - if [ -d /sys/kernel/debug ] && ! mountinfo -q /sys/kernel/debug ; then - if grep -qs debugfs /proc/filesystems ; then + if [ -d /sys/kernel/debug ] && ! mountinfo -q /sys/kernel/debug; then + if grep -qs debugfs /proc/filesystems; then ebegin "Mounting debug filesystem" mount -t debugfs debugfs /sys/kernel/debug \ -o nodev,noexec,nosuid @@ -96,8 +96,8 @@ start() { fi # Setup Kernel Support for SELinux - if [ -d /selinux ] && ! mountinfo -q /selinux ; then - if grep -qs selinuxfs /proc/filesystems ; then + if [ -d /selinux ] && ! mountinfo -q /selinux; then + if grep -qs selinuxfs /proc/filesystems; then ebegin "Mounting SELinux filesystem" mount -t selinuxfs selinuxfs /selinux eend $? |