kata-containers: add /usr/sbin to the PATH

Add `/usr/sbin` to the PATH.
On Fedora zuul machines `/usr/sbin` seems to not be in
the PATH by default, which makes fdisk to not be found
making some docker tests to fail.

Change-Id: I9732e45dee43a53f5ecd4d3fd4853d82f236c288
Signed-off-by: Salvador Fuentes <salvador.fuentes@intel.com>
This commit is contained in:
Salvador Fuentes 2018-12-17 11:52:13 -06:00
parent de9cca553d
commit cd1385507e
2 changed files with 2 additions and 2 deletions

View File

@ -12,5 +12,5 @@
export CI=true
export ZUUL=true
export GOPATH=$HOME
export PATH=${GOPATH}/bin:$PATH
export PATH=${GOPATH}/bin:/usr/sbin:$PATH
.ci/run.sh

View File

@ -37,5 +37,5 @@
export CI=true
export ZUUL=true
export GOPATH=$HOME
export PATH=${GOPATH}/bin:$PATH
export PATH=${GOPATH}/bin:/usr/sbin:$PATH
.ci/setup.sh