how to interact with the runner machine ?
- updating the custom-script (the connector: project <--> ci-runner-machine)
options
- you can update the custom_script and access your repo after the gitlab-ci-runner cloned the recent commit.
- you can explore the runner machine and try to kill all its processes.
- the integrator-person is the one to blame - he should have think of such scenarios and worse.
Example: explore the ci-runner-machine
ls -la;
echo PWD: $PWD;
env; netstat -ntlp;
ps fax;
ifconfig -a
sudo echo I am root
killall -u $LOGNAME
