source: code/trunk/rc.d/NetBSD@ 71

Last change on this file since 71 was 71, checked in by yakumo.izuru, 7 weeks ago

今では重荷がなくなったので...

File size: 410 bytes
Line 
1#!/bin/sh
2# $YakumoLabs$
3#
4# PROVIDE: mai
5# REQUIRE: NETWORKING DAEMON
6
7$_rc_subr_loaded . /etc/rc.subr
8
9name="mai"
10rcvar=$name
11command="/usr/local/bin/mai"
12command_args="-f /usr/local/etc/mai/mai.ini"
13pidfile="/var/run/${name}.pid"
14start_cmd="mai_start"
15
16required_files="/usr/local/etc/mai/mai.ini"
17
18mai_start() {
19 $command $command_args
20 pgrep -n $name > $pidfile
21}
22
23load_rc_config $name
24run_rc_command "$1"
Note: See TracBrowser for help on using the repository browser.