Skip to content

Instantly share code, notes, and snippets.

@natewalck
Created February 10, 2013 20:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save natewalck/4750856 to your computer and use it in GitHub Desktop.
Save natewalck/4750856 to your computer and use it in GitHub Desktop.
Puppet Master launchd item
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//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>/sbin:/usr/sbin:/bin:/usr/bin</string>
<key>RUBYLIB</key>
<string>/usr/lib/ruby/site_ruby/1.8/</string>
</dict>
<key>Label</key>
<string>com.puppetlabs.puppetmaster</string>
<key>OnDemand</key>
<false/>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/puppet</string>
<string>master</string>
<string>--verbose</string>
<string>--no-daemonize</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>ServiceDescription</key>
<string>Puppetmaster Daemon</string>
<key>ServiceIPC</key>
<false/>
<key>StandardErrorPath</key>
<string>/var/log/puppet/puppetmaster.err</string>
<key>StandardOutPath</key>
<string>/var/log/puppet/puppetmaster.out</string>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment