dect
/
libpcap
Archived
13
0
Fork 0
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.
This commit is contained in:
Guy Harris 2009-09-09 16:50:36 -07:00
parent d2ec25429b
commit 2212a58381
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");
}