description "Limenka Knots Daemon" start on runlevel [2345] stop on starting rc RUNLEVEL=[016] env LIMENKAD_BIN="/usr/bin/limenkad" env LIMENKAD_USER="limenka" env LIMENKAD_GROUP="limenka" env LIMENKAD_PIDDIR="/var/run/limenkad" # upstart can't handle variables constructed with other variables env LIMENKAD_PIDFILE="/var/run/limenkad/limenkad.pid" env LIMENKAD_CONFIGFILE="/etc/limenka/limenka.conf" env LIMENKAD_DATADIR="/var/lib/limenkad" expect fork respawn respawn limit 5 120 kill timeout 600 pre-start script # this will catch non-existent config files # limenkad will check and exit with this very warning, but it can do so # long after forking, leaving upstart to think everything started fine. # since this is a commonly encountered case on install, just check and # warn here. if ! grep -qs '^rpcpassword=' "$LIMENKAD_CONFIGFILE" ; then echo "ERROR: You must set a secure rpcpassword to run limenkad." echo "The setting must appear in $LIMENKAD_CONFIGFILE" echo echo "This password is security critical to securing wallets " echo "and must not be the same as the rpcuser setting." echo "You can generate a suitable random password using the following " echo "command from the shell:" echo echo "bash -c 'tr -dc a-zA-Z0-9 < /dev/urandom | head -c32 && echo'" echo echo "It is recommended that you also set alertnotify so you are " echo "notified of problems:" echo echo "ie: alertnotify=echo %%s | mail -s \"Limenka Alert\"" \ "admin@foo.com" echo exit 1 fi mkdir -p "$LIMENKAD_PIDDIR" chmod 0755 "$LIMENKAD_PIDDIR" chown $LIMENKAD_USER:$LIMENKAD_GROUP "$LIMENKAD_PIDDIR" chown $LIMENKAD_USER:$LIMENKAD_GROUP "$LIMENKAD_CONFIGFILE" chmod 0660 "$LIMENKAD_CONFIGFILE" end script exec start-stop-daemon \ --start \ --pidfile "$LIMENKAD_PIDFILE" \ --chuid $LIMENKAD_USER:$LIMENKAD_GROUP \ --exec "$LIMENKAD_BIN" \ -- \ -pid="$LIMENKAD_PIDFILE" \ -conf="$LIMENKAD_CONFIGFILE" \ -datadir="$LIMENKAD_DATADIR" \ -disablewallet \ -daemon