Created
May 24, 2017 04:51
-
-
Save westsouthnight/c67a2e379d1c9f8a4c9a156d33034f4d to your computer and use it in GitHub Desktop.
vboxwebsrv autostart 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
/Library/LaunchDaemons/org.virtualbox.vboxwebsrv.plist | |
<?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>Disabled</key> | |
<false/> | |
<key>KeepAlive</key> | |
<false/> | |
<key>Label</key> | |
<string>org.virtualbox.vboxwebsvc</string> | |
<key>Program</key> | |
<string>/Applications/VirtualBox.app/Contents/MacOS/vboxwebsrv</string> | |
<key>Sockets</key> | |
<dict> | |
<key>Listeners</key> | |
<dict> | |
<key>SockServiceName</key> | |
<string>18083</string> | |
<key>SockType</key> | |
<string>stream</string> | |
<key>SockFamily</key> | |
<string>IPv4</string> | |
</dict> | |
</dict> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment