Always reverse network changes if qemu crashes.
This commit is contained in:
parent
4cb27edcad
commit
b72700feab
1 changed files with 3 additions and 1 deletions
4
start
4
start
|
@ -122,6 +122,8 @@ read -ra base_arguments -d '' < "$o_base_path" || true
|
|||
read -ra default_arguments -d '' < "$o_default_path" || true
|
||||
read -ra hardware_arguments -d '' < "$o_hardware_path" || true
|
||||
read -ra specific_arguments -d '' < "$o_specific_path" || true
|
||||
|
||||
# append or true to reverse network changes
|
||||
$DEBUG $SUDO nice --adjustment=-20 taskset --cpu-list '2-5,8-11' \
|
||||
qemu-system-x86_64 \
|
||||
-name "$VMNAME,process=VMNAME" \
|
||||
|
@ -130,7 +132,7 @@ $DEBUG $SUDO nice --adjustment=-20 taskset --cpu-list '2-5,8-11' \
|
|||
"${base_arguments[@]}" \
|
||||
"${default_arguments[@]}" \
|
||||
"${hardware_arguments[@]}" \
|
||||
"${specific_arguments[@]}"
|
||||
"${specific_arguments[@]}" || true
|
||||
|
||||
NET_CONF_FILE="$NET_CONF_FILE" $DEBUG $SUDO --preserve-env=NET_CONF_FILE \
|
||||
./net delete
|
||||
|
|
Loading…
Add table
Reference in a new issue