diff options
author | trasz <trasz@FreeBSD.org> | 2014-08-17 09:44:42 +0000 |
---|---|---|
committer | trasz <trasz@FreeBSD.org> | 2014-08-17 09:44:42 +0000 |
commit | cac9beab7d53f0c37ce2a2a1b893be59028928f4 (patch) | |
tree | b1803eddeeac8277c4ac48d69f5a735564939289 /etc/rc.d/automount | |
parent | 9bd03869ff37c33e97817d979b3c3039fde1520d (diff) | |
download | FreeBSD-src-cac9beab7d53f0c37ce2a2a1b893be59028928f4.zip FreeBSD-src-cac9beab7d53f0c37ce2a2a1b893be59028928f4.tar.gz |
Bring in the new automounter, similar to what's provided in most other
UNIX systems, eg. MacOS X and Solaris. It uses Sun-compatible map format,
has proper kernel support, and LDAP integration.
There are still a few outstanding problems; they will be fixed shortly.
Reviewed by: allanjude@, emaste@, kib@, wblock@ (earlier versions)
Phabric: D523
MFC after: 2 weeks
Relnotes: yes
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'etc/rc.d/automount')
-rw-r--r-- | etc/rc.d/automount | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/etc/rc.d/automount b/etc/rc.d/automount new file mode 100644 index 0000000..63bda42 --- /dev/null +++ b/etc/rc.d/automount @@ -0,0 +1,31 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +# PROVIDE: automount +# REQUIRE: nfsclient +# KEYWORD: nojail shutdown + +. /etc/rc.subr + +name="automount" +rcvar="autofs_enable" +start_cmd="automount_start" +stop_cmd="automount_stop" +required_modules="autofs" + +automount_start() +{ + + /usr/sbin/automount +} + +automount_stop() +{ + + /sbin/umount -At autofs +} + +load_rc_config $name +run_rc_command "$1" |