Skip to content

Instantly share code, notes, and snippets.

@breiter
Created September 5, 2014 05:31
Show Gist options
  • Save breiter/cbf0307c671f8bc0a7c4 to your computer and use it in GitHub Desktop.
Save breiter/cbf0307c671f8bc0a7c4 to your computer and use it in GitHub Desktop.
launchd plist to allow wireshark to work without sudo for admin users on OS X
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>org.macports.wireshark-chmodbpf</string>
<key>Program</key>
<string>/bin/sh</string>
<key>ProgramArguments</key>
<array>
<string>/bin/sh</string>
<string>-c</string>
<string>/usr/sbin/chown root:admin /dev/bpf*; /bin/chmod g+r /dev/bpf*</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<dict>
<key>SuccessfulExit</key>
<false/>
</dict>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment