NetBSD/etc/rc.d/mountall

17 lines
343 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: mountall,v 1.6 2008/12/01 14:47:14 tsutsui Exp $
2000-03-10 14:53:23 +03:00
#
# REQUIRE: mountcritremote named ypbind
2000-03-10 14:53:23 +03:00
# PROVIDE: mountall
$_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"