Fix locations of PF helpers.
[dragonfly.git] / etc / rc.d / mountall
1 #!/bin/sh
2 #
3 # $NetBSD: mountall,v 1.3 2000/05/13 08:45:07 lukem Exp $
4 # $FreeBSD: src/etc/rc.d/mountall,v 1.2 2002/06/13 22:14:36 gordon Exp $
5 # $DragonFly: src/etc/rc.d/Attic/mountall,v 1.1 2003/07/24 06:35:37 dillon Exp $
6 #
7
8 # PROVIDE: mountall
9 # REQUIRE: beforemountlkm
10
11 . /etc/rc.subr
12
13 name="mountall"
14 start_cmd="echo 'Mounting all filesystems...'; mount -a"
15 stop_cmd="echo 'Unmounting all filesystems...'; umount -a"
16
17 load_rc_config $name
18 run_rc_command "$1"