
Use bash options to have client scripts exit with an error if any command returns an error (errexit) or if an unset variable is used (nounset). Fix those scripts that would otherwise fail due to this change. Change-Id: I23336bcb5227e884eaf6dd6e9eb5cb0fc24977cc
17 lines
443 B
Bash
Executable File
17 lines
443 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -o errexit -o nounset
|
|
TOP_DIR=$(cd $(dirname "$0")/.. && pwd)
|
|
source "$TOP_DIR/config/paths"
|
|
source "$LIB_DIR/functions.guest"
|
|
|
|
indicate_current_auto
|
|
|
|
exec_logfile
|
|
|
|
# This script is run by vm_install_base. It should work on all supported
|
|
# distributions.
|
|
|
|
# match Vagrant which removes 70-persistent-net.rules (so we get the same
|
|
# names for our network interfaces)
|
|
sudo rm -f /etc/udev/rules.d/70-persistent-net.rules
|