Revision 15165d39ab047f5d7c6b52a45ee0e95b5709d492 authored by Tom Hadlaw on 08 May 2023, 23:12:16 UTC, committed by Tom Hadlaw on 08 May 2023, 23:12:16 UTC
Signed-off-by: Tom Hadlaw <tom.hadlaw@isovalent.com>
1 parent 93cd67f
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 --version\" "
VBoxManage --version

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

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