diff options
Diffstat (limited to 'etc/rc.d/nfsclient')
-rw-r--r-- | etc/rc.d/nfsclient | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc.d/nfsclient b/etc/rc.d/nfsclient index 87de36d..a44be7f 100644 --- a/etc/rc.d/nfsclient +++ b/etc/rc.d/nfsclient @@ -19,12 +19,12 @@ stop_cmd="unmount_all" nfsclient_precmd() { if ! sysctl vfs.nfs >/dev/null 2>&1; then - if ! kldload nfsclient ; then + if ! kldload nfsclient; then warn 'Could not load nfs client module' return 1 fi fi - return 0 + return 0 } nfsclient_start() |