-
Notifications
You must be signed in to change notification settings - Fork 62
Closed as not planned
Labels
Description
From the riak-users mailing list (http://lists.basho.com/pipermail/riak-users_lists.basho.com/2014-September/015971.html)
I think we have found a small bug in riak/riak-cs debian init scripts (/etc/init.d/riak{,-cs}). When used in CRON, ie for restarting riak process on a schedule, init scripts fail because they don't set PATH variable to recommended value. Without setting proper PATH, init script is unable to find start-stop-daemon.
Recommended value for PATH for debian init scripts can be found in /etc/init.d/ssh and many other debian init scripts and looks like:
export PATH="${PATH:+$PATH:}/usr/sbin:/sbin"
or
PATH=/sbin:/bin:/usr/sbin:/usr/bin
Reactions are currently unavailable