Revision 1569484069667e9fdebdb5f8271d43044706fff9 authored by viktor-kurchenko on 14 February 2024, 10:08:00 UTC, committed by viktor-kurchenko on 14 February 2024, 10:08:00 UTC
Signed-off-by: viktor-kurchenko <viktor.kurchenko@isovalent.com>
1 parent 7f4e472
Raw File
post_build_agent.sh
#!/usr/bin/env 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