diff options
Diffstat (limited to 'net/samba20/files/nmbd.sh')
-rwxr-xr-x | net/samba20/files/nmbd.sh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net/samba20/files/nmbd.sh b/net/samba20/files/nmbd.sh new file mode 100755 index 00000000000..9f60a1d0c0c --- /dev/null +++ b/net/samba20/files/nmbd.sh @@ -0,0 +1,30 @@ +#!/bin/sh +# +# $NetBSD: nmbd.sh,v 1.3 2001/11/21 17:17:44 jlam Exp $ +# +# PROVIDE: nmbd +# REQUIRE: DAEMON + +if [ -d /etc/rc.d -a -f /etc/rc.subr ] +then + . /etc/rc.subr +fi + +name="nmbd" +rcvar=$name +command="@PREFIX@/sbin/${name}" +required_files="@SAMBA_ETCDIR@/smb.conf" +extra_commands="reload" +command_args="-D" # _must_ start as daemon from rc.d; + # add more flags through ${${name}_flags} + +reload_cmd=":" # avoid dumping debug output on SIGHUP + +if [ ! -d /etc/rc.d ] +then + @ECHO@ -n ' ${name}' + ${command} ${nmbd_flags} ${command_args} +else + load_rc_config $name + run_rc_command "$1" +fi |