Created
November 28, 2021 17:23
-
-
Save macmule/8d56d58697ab3ccd121cd55cba0527c4 to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
#################################################################################################### | |
# | |
# License: https://macmule.com/license/ | |
# | |
#################################################################################################### | |
#### Stop Portfolio | |
sudo launchctl unload /Library/LaunchDaemons/com.extensis.dam-server.web.admin.launchd.plist | |
sleep 5 | |
sudo launchctl unload /Library/LaunchDaemons/com.extensis.portfolio.server.elasticsearch.plist | |
sleep 5 | |
sudo launchctl unload /Library/LaunchDaemons/com.extensis.portfolio.server.media.delegate.plist | |
sleep 5 | |
sudo launchctl unload /Library/LaunchDaemons/com.edb.launchd.portfoliodb.plist | |
sleep 30 | |
#### Start Portfolio | |
sudo launchctl load /Library/LaunchDaemons/com.edb.launchd.portfoliodb.plist | |
sleep 5 | |
sudo launchctl load /Library/LaunchDaemons/com.extensis.portfolio.server.elasticsearch.plist | |
sleep 5 | |
sudo launchctl load /Library/LaunchDaemons/com.extensis.portfolio.server.media.delegate.plist | |
sleep 5 | |
sudo launchctl load /Library/LaunchDaemons/com.extensis.dam-server.web.admin.launchd.plist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment