From ad2d29cf4b811ff0cf3fec24666a38dbd5bf935b Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 23 Sep 2014 13:38:45 -0700 Subject: [PATCH] Put /usr/local/bin in nodepool PATH for dib When we install dib via pip the executables are put in /usr/local/bin which was not in nodepool's PATH. The PATH is configured by the init script so update the variable to include /usr/local/bin. Change-Id: Ie456ecf667d330b925d3168a456d4ac84d1c48f4 --- modules/nodepool/files/nodepool.init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nodepool/files/nodepool.init b/modules/nodepool/files/nodepool.init index 2885ccdc13..3d8d729028 100755 --- a/modules/nodepool/files/nodepool.init +++ b/modules/nodepool/files/nodepool.init @@ -12,7 +12,7 @@ # Do NOT "set -e" # PATH should only include /usr/* if it runs after the mountnfs.sh script -PATH=/sbin:/usr/sbin:/bin:/usr/bin +PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin DESC="Nodepool" NAME=nodepool DAEMON=/usr/local/bin/nodepoold