http://developer.apple.com/mac/library/documentation/MacOSX/Conceptual/BPSystemStartup/Articles/StartupItems.html

"Table 1  StartupParameters.plist key-value pairs

Key		Type	Value
Description	String	A short description of the startup item,
			used by administrative tools.

Provides	Array	The names of the services provided by this
			startup item.  Although a startup item can
			potentially provide multiple services, it is
			recommended that you limit your startup items
			to only one service each."

Fix "Provides" to be the name of the service, not a description of the
helpful operations that it provides.

(Propagated from tcpdump.org git repository.)

svn path=/trunk/; revision=29830
This commit is contained in:
Guy Harris 2009-09-09 23:56:27 +00:00
parent b9901ede8a
commit 6efbdf6cc9
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{
Description = "Change BPF permissions";
Provides = ("Non-root permission to capture or send raw packets");
Provides = ("ChmodBPF");
}