- Add Robottelo as a remote repository to your fork
(master) $ git remote add upstream [email protected]:omaciel/robottelo.git
- Fetch latest upstream code
(master) $ git remote add upstream [email protected]:omaciel/robottelo.git
#!/bin/bash -e | |
# allow change to pass-in display argument | |
DISPLAY=$1 | |
: ${DISPLAY:=:1} | |
export DISPLAY | |
echo "Starting VNC server" | |
vncserver ${DISPLAY} -geometry 1280x1024 |
#!/bin/bash +e | |
# allow change to pass-in display argument | |
DISPLAY=$1 | |
: ${DISPLAY:=:1} | |
export DISPLAY | |
echo "=== network before $0 ===" | |
netstat -na | grep "LISTEN " | |
echo |