Skip to content

Instantly share code, notes, and snippets.

@bora89
Created November 12, 2016 16:49
Show Gist options
  • Save bora89/47b959ad046f8ce2d8c796019480fa77 to your computer and use it in GitHub Desktop.
Save bora89/47b959ad046f8ce2d8c796019480fa77 to your computer and use it in GitHub Desktop.
sudo launchctl load /Library/LaunchAgents/org.ivyweb.vagrant.plist https://justinlevi.github.io/blog/2016/03/06/vagrant-virtualbox-mac
<?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>EnvironmentVariables</key>
<dict>
<key>PATH</key>
<string>/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin</string>
</dict>
<key>Label</key>
<string>org.ivyweb.vagrant</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/bin/vagrant</string>
<string>up</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>StandardErrorPath</key>
<string>/tmp/org.ivyweb.vagrant.err</string>
<key>StandardOutPath</key>
<string>/tmp/org.ivyweb.vagrant.out</string>
<key>WorkingDirectory</key>
<string>/Users/alexander/vm/ubu/vagrant</string>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment