Jump to content

PNETLab: skip setup wizard

From Wiki

How to disable setup wizard on login 1. Edit the setup wizard script:

vim /opt/ovf/ovfconfig.sh

2. Add this after the first line:

# If .skipovfconfig exists in home, skip the OVF config script
if -e ~/.skipovfconfig ; then
    echo "Skipping OVF config script"
    exit
fi

3. Create the .skipovfconfig file:

cd ~
touch .skipovfconfig

Next time you login, you shouldn't get the setup wizard popping up