Revision ca1af73ffe025e2ebdb6c8cd5b2cfb1909cb3b06 authored by Tim Horner on 13 March 2024, 15:45:55 UTC, committed by Jarno Rajahalme on 13 March 2024, 21:52:50 UTC
Signed-off-by: Tim Horner <timothy.horner@isovalent.com>
1 parent a58e3f4
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