svn commit: r193119 - head/etc/rc.d

Doug Barton dougb at FreeBSD.org
Sat May 30 21:51:39 UTC 2009


Author: dougb
Date: Sat May 30 21:51:38 2009
New Revision: 193119
URL: http://svn.freebsd.org/changeset/base/193119

Log:
  Small cleanup, add (spurious) quotation marks around the value
  for name= to make these scripts consistent with the rest.

Modified:
  head/etc/rc.d/archdep
  head/etc/rc.d/moused
  head/etc/rc.d/nscd
  head/etc/rc.d/ntpd

Modified: head/etc/rc.d/archdep
==============================================================================
--- head/etc/rc.d/archdep	Sat May 30 21:41:54 2009	(r193118)
+++ head/etc/rc.d/archdep	Sat May 30 21:51:38 2009	(r193119)
@@ -9,7 +9,7 @@
 
 . /etc/rc.subr
 
-name=archdep
+name="archdep"
 start_cmd="archdep_start"
 stop_cmd=":"
 

Modified: head/etc/rc.d/moused
==============================================================================
--- head/etc/rc.d/moused	Sat May 30 21:41:54 2009	(r193118)
+++ head/etc/rc.d/moused	Sat May 30 21:51:38 2009	(r193119)
@@ -9,7 +9,7 @@
 
 . /etc/rc.subr
 
-name=moused
+name="moused"
 rcvar=`set_rcvar`
 command="/usr/sbin/${name}"
 start_cmd="moused_start"

Modified: head/etc/rc.d/nscd
==============================================================================
--- head/etc/rc.d/nscd	Sat May 30 21:41:54 2009	(r193118)
+++ head/etc/rc.d/nscd	Sat May 30 21:51:38 2009	(r193119)
@@ -18,7 +18,7 @@
 
 . /etc/rc.subr
 
-name=nscd
+name="nscd"
 rcvar=`set_rcvar`
 
 command=/usr/sbin/nscd

Modified: head/etc/rc.d/ntpd
==============================================================================
--- head/etc/rc.d/ntpd	Sat May 30 21:41:54 2009	(r193118)
+++ head/etc/rc.d/ntpd	Sat May 30 21:51:38 2009	(r193119)
@@ -10,7 +10,7 @@
 
 . /etc/rc.subr
 
-name=ntpd
+name="ntpd"
 rcvar=`set_rcvar`
 command="/usr/sbin/${name}"
 pidfile="/var/run/${name}.pid"


More information about the svn-src-all mailing list