Created
March 1, 2021 07:20
-
-
Save mkormendy/3be5be0d4b87d5767d06dd2725f95f9c to your computer and use it in GitHub Desktop.
Revisions
-
mkormendy created this gist
Mar 1, 2021 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ #!/bin/sh brew tap homebrew/cask-drivers brew install --cask homebrew/cask-versions/adoptopenjdk8 brew install --cask ubiquiti-unifi-controller 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>WorkingDirectory</key> <string>/Applications/UniFi.app/Contents/Resources</string> <key>KeepAlive</key> <true/> <key>Label</key> <string>ui.unifi.controller</string> <key>ProcessType</key> <string>Background</string> <key>ProgramArguments</key> <array> <string>/usr/libexec/java_home</string> <string>-v</string> <string>1.8</string> <string>--exec</string> <string>java</string> <string>-jar</string> <string>lib/ace.jar</string> <string>start</string> </array> </dict> </plist>