NetBSD/etc/rc.d/mountall

17 lines
329 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: mountall,v 1.4 2004/08/13 18:08:03 mycroft Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: mountall
# REQUIRE: beforemountlkm
$_rc_subr_loaded . /etc/rc.subr
2000-03-10 14:53:23 +03:00
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"