diff options
author | Ed Warnicke <eaw@cisco.com> | 2016-05-16 14:50:46 -0500 |
---|---|---|
committer | Ed Warnicke <eaw@cisco.com> | 2016-05-16 14:50:46 -0500 |
commit | 59a041e679eb4af1e2a534c4dfb234c2fa26279a (patch) | |
tree | b218cf7b58df7e488db63bf5f9b55691b008193d | |
parent | 39f70768ba8149972ce55f805a76029a8711bf7b (diff) |
Instrument Jenkins images/builds (take2)
Change-Id: I167cb259fce64f96d385294268a78bf6d161c8de
Signed-off-by: Ed Warnicke <eaw@cisco.com>
-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 |