02f67a5746
Add an override variable for the DISK file location for each node in a virtual lab. Introduced the ability to set disk file location for all nodes in a config file. (was hardcoded to /var/lib/libvirt/images) This enhancement enables better utilization of the host's disk resources, allowing for more complex deployments such as 'Distributed Cloud'. Test plan: PASS: pylint, flake8, bashate PASS: Regression for default and madcloud examples PASS: Able to change what is storage and how many are applied PASS: Copy default.yaml and modify values of disk directories for nodes and compare to default.yaml Story: 2010816 Task: 48397 Change-Id: If19404ed151739c4abcbd5f2c3b9fb62132ed6fe Signed-off-by: Bailey Henry <Henry.Bailey@windriver.com>
17 lines
393 B
Bash
Executable File
17 lines
393 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Copyright (c) 2023 Wind River Systems, Inc.
|
|
#
|
|
|
|
source set_defaults.sh
|
|
|
|
for i in {1..4}; do
|
|
BRIDGE_INTERFACE_NAME=${BRIDGE_INTERFACE}$i
|
|
if [ -d "/sys/class/net/${BRIDGE_INTERFACE_NAME}" ]; then
|
|
sudo ip link set dev ${BRIDGE_INTERFACE_NAME} down
|
|
sudo ip link delete dev ${BRIDGE_INTERFACE_NAME}
|
|
fi
|
|
done
|