diff options
Diffstat (limited to 'scripts/vyos/cleanup-vyos-configure.sh')
-rw-r--r-- | scripts/vyos/cleanup-vyos-configure.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/scripts/vyos/cleanup-vyos-configure.sh b/scripts/vyos/cleanup-vyos-configure.sh new file mode 100644 index 0000000..26f3bfd --- /dev/null +++ b/scripts/vyos/cleanup-vyos-configure.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +set -e +set -x + +export DEBIAN_FRONTEND=noninteractive + +# delete interfaces ethernet eth0 address +# delete interfaces ethernet eth0 hw-id +# delete system name-server + +cat <<EOF > /home/vyos/cleanup-vyos.sh +#!/bin/vbash +source /opt/vyatta/etc/functions/script-template +configure +set system host-name 'vyosbuild' +commit +save +exit +EOF +chmod 0700 /home/vyos/cleanup-vyos.sh +chown vyos:users /home/vyos/cleanup-vyos.sh +su - vyos -c "/home/vyos/cleanup-vyos.sh" + +# run cleanup on vyos configure using python vyos.configtree, since can't remove interfaces via configure cli +config_update_url="http://${PACKER_HTTP_IP}:${PACKER_HTTP_PORT}/cleanup-vyos-configure.py" +wget $config_update_url -O /home/vyos/cleanup-vyos-configure.py +chown vyos:users /home/vyos/cleanup-vyos-configure.py +chmod 0664 /home/vyos/cleanup-vyos-configure.py +python3 /home/vyos/cleanup-vyos-configure.py +rm -rf /home/vyos/cleanup-vyos-configure.py |