mountcritremote (f5dfe75da5ba2937f8766792f625f32fc3ef4757) mountcritremote (b11974c250671368e1eb869ca8ce2ed70622917f)
1#!/bin/sh
2#
3# $FreeBSD$
4#
5
6# PROVIDE: mountcritremote
7# REQUIRE: NETWORKING FILESYSTEMS ipsec netwait
8# KEYWORD: nojail

--- 13 unchanged lines hidden (view full) ---

22# skips nfs in the following block (for "other network filesystems") can
23# be removed.
24#
25mountcritremote_precmd()
26{
27 case "`mount -d -a -t nfs 2> /dev/null`" in
28 *mount_nfs*)
29 # Handle absent nfs client support
1#!/bin/sh
2#
3# $FreeBSD$
4#
5
6# PROVIDE: mountcritremote
7# REQUIRE: NETWORKING FILESYSTEMS ipsec netwait
8# KEYWORD: nojail

--- 13 unchanged lines hidden (view full) ---

22# skips nfs in the following block (for "other network filesystems") can
23# be removed.
24#
25mountcritremote_precmd()
26{
27 case "`mount -d -a -t nfs 2> /dev/null`" in
28 *mount_nfs*)
29 # Handle absent nfs client support
30 load_kld nfscl || return 1
30 load_kld -m nfs nfscl || return 1
31 ;;
32 esac
33 return 0
34}
35
36mountcritremote_start()
37{
38 local mounted_remote_filesystem=false

--- 52 unchanged lines hidden ---
31 ;;
32 esac
33 return 0
34}
35
36mountcritremote_start()
37{
38 local mounted_remote_filesystem=false

--- 52 unchanged lines hidden ---