mountall revision 1.5
1#!/bin/sh
2#
3# $NetBSD: mountall,v 1.5 2008/11/12 12:35:52 ad Exp $
4#
5
6# PROVIDE: mountall
7
8$_rc_subr_loaded . /etc/rc.subr
9
10name="mountall"
11start_cmd="echo 'Mounting all filesystems...'; mount -a"
12stop_cmd="echo 'Unmounting all filesystems...'; umount -a"
13
14load_rc_config $name
15run_rc_command "$1"
16