diff options
-rw-r--r-- | jjb/vpp/include-raw-vpp-build.sh | 7 | ||||
-rw-r--r-- | vagrant/basebuild/bootstrap.sh | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/jjb/vpp/include-raw-vpp-build.sh b/jjb/vpp/include-raw-vpp-build.sh index 84a77129b..05d6d5d74 100644 --- a/jjb/vpp/include-raw-vpp-build.sh +++ b/jjb/vpp/include-raw-vpp-build.sh @@ -18,6 +18,13 @@ else echo "Cannot find cat /etc/bootstrap.sha" fi +echo "cat /etc/bootstrap-functions.sha" +if [ -f /etc/bootstrap-functions.sha ];then + cat /etc/bootstrap-functions.sha +else + echo "Cannot find cat /etc/bootstrap-functions.sha" +fi + echo "shasum of this script: ${0}" shasum $0 diff --git a/vagrant/basebuild/bootstrap.sh b/vagrant/basebuild/bootstrap.sh index a0f5c7f25..6e0735c86 100644 --- a/vagrant/basebuild/bootstrap.sh +++ b/vagrant/basebuild/bootstrap.sh @@ -10,6 +10,7 @@ do_setup # record the bootstrap.sh checksum shasum $0 > /etc/bootstrap.sha +shasum /vagrant/lib/bootstrap-functions.sh > /etc/bootstrap-functions.sha echo "---> Attempting to detect OS" # OS selector |