Remove reundant quote.
[netbsd-mini2440.git] / etc / rc.d / envsys
bloba302a18ee31c33e9bfec61162e68c10ed7896b69
1 #!/bin/sh
3 # $NetBSD: envsys,v 1.2 2007/07/25 12:47:44 xtraeme Exp $
6 # PROVIDE: envsys
7 # REQUIRE: LOGIN DAEMON
9 $_rc_subr_loaded . /etc/rc.subr
11 name="envsys"
12 rcvar=${name}
13 command="/usr/sbin/envstat"
14 required_files="/etc/envsys.conf"
15 start_cmd="do_start"
16 stop_cmd="do_stop"
18 do_start()
20 ${command} -c ${required_files}
21 [ $? -eq 0 ] && echo "Setting new sensor properties."
24 do_stop()
26 ${command} -S
27 [ $? -eq 0 ] && echo "Removing sensor properties."
30 load_rc_config ${name}
31 run_rc_command "$1"