NetBSD/etc/rc.d/mountall

17 lines
310 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: mountall,v 1.3 2000/05/13 08:45:07 lukem Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: mountall
# REQUIRE: beforemountlkm
. /etc/rc.subr
name="mountall"
start_cmd="echo 'Mounting all filesystems...'; mount -a"
stop_cmd="echo 'Unmounting all filesystems...'; umount -a"
2000-03-10 14:53:23 +03:00
load_rc_config $name
2000-03-10 14:53:23 +03:00
run_rc_command "$1"