Skip to content

Instantly share code, notes, and snippets.

View JannieT's full-sized avatar

Jannie Theunissen JannieT

View GitHub Profile
@JannieT
JannieT / beanstald.sh
Last active August 5, 2016 14:02 — forked from finger-berlin/beanstald.sh
OSX script for easy start & stop beanstalkd (brew version)
#!/bin/sh
daemon=beanstalkd
executable=/usr/local/bin/$daemon
port=11300
waldir=/usr/local/var/beanstalkd
logfile=/usr/local/var/log/beanstalkd.log
interface="127.0.0.1"
params="-l $interface -p $port -b $waldir"