Revision 4a03b1af712fb17e423a3eb06fa39fa7c33e9962 authored by Joe Stringer on 10 June 2022, 22:01:22 UTC, committed by Joe Stringer on 10 June 2022, 23:41:33 UTC
Signed-off-by: Joe Stringer <joe@cilium.io>
1 parent 5495244
Raw File
post_build_agent.sh
#!/bin/bash

echo "output of following commands are ran on the Jenkins agent itself"
echo "output of: \"ps -ef | grep -i vbox\" "
ps -ef | grep -i vbox

echo "output of: \"ps -ef | grep -i vagrant\" "
ps -ef | grep -i vagrant

echo "output of: \"VBoxManage list runningvms\" "
VBoxManage list runningvms

echo "output of: \"VBoxManage list intnets\" "
VBoxManage list intnets
back to top