5 lines
176 B
Bash
5 lines
176 B
Bash
#!/bin/sh
|
|
exec 2>&1
|
|
[ -r ./conf ] && . ./conf
|
|
umurmurd -t -c /etc/umurmur/umurmur.conf || exit $?
|
|
exec chpst -uumurmur:umurmur umurmurd -d -c /etc/umurmur/umurmur.conf ${OPTS}
|