Skip to content

Commit

Permalink
To quote
Browse files Browse the repository at this point in the history
	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.
  • Loading branch information
guyharris committed Sep 9, 2009
1 parent d2ec254 commit 2212a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ChmodBPF/StartupParameters.plist
@@ -1,4 +1,4 @@
{ {
Description = "Change BPF permissions"; Description = "Change BPF permissions";
Provides = ("Non-root permission to capture or send raw packets"); Provides = ("ChmodBPF");
} }

0 comments on commit 2212a58

Please sign in to comment.