Set PATH when running configure mirror script

The configure mirror script is trying to run utilities like ip and
restorecon which at least on some distros are hidden away in /usr/sbin
and not where nodepool would find them otherwise. Explicitly add /sbin,
/usr/sbin, /bin, /usr/bin, and /usr/local/bin to the end of PATH to list
all of the various places we might find things. With this in place we
should be able to find ip and restorecon whereever they are.

Change-Id: I800cd69e47b4b099b453e47f1b579ab015ed628f
This commit is contained in:
Clark Boylan 2017-06-21 15:11:29 -07:00
parent e618f6622d
commit 5213751af6
1 changed files with 4 additions and 0 deletions

View File

@ -16,6 +16,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# We need to ensure that we can find utilities like ip and restorecon
# which at least on some distros live in /usr/sbin.
export PATH="$PATH:/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin"
if [ -f /etc/dib-builddate.txt ]; then
echo "Image build date"
echo "================"