Created
April 25, 2011 13:33
-
-
Save flakshack/940513 to your computer and use it in GitHub Desktop.
.Profile Entry to stop or start Riverbed SteelHead Mobile processes on Mac OS X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stop-riverbed () { | |
sudo launchctl unload /Library/LaunchDaemons/com.riverbed.monitord.plist | |
sudo "/Library/Application Support/Riverbed/Steelhead Mobile/boot.sh" --stop | |
launchctl unload -S Aqua /Library/LaunchAgents/com.riverbed.useragentd.plist | |
ps x | awk '/[S]teelheadMobileMenu/ {print $1}' | xargs kill -3 | |
} | |
start-riverbed () { | |
sudo launchctl load /Library/LaunchDaemons/com.riverbed.monitord.plist | |
sudo "/Library/Application Support/Riverbed/Steelhead Mobile/boot.sh" --start | |
launchctl load -S Aqua /Library/LaunchAgents/com.riverbed.useragentd.plist | |
open -a SteelheadMobileMenu | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment