From 286f233a4b4779d836532e3f6e58d85c44504658 Mon Sep 17 00:00:00 2001 From: Michel Thebeau Date: Mon, 14 Aug 2023 15:13:58 -0400 Subject: [PATCH] libvirt: move yaml files to a yaml subdirectory The libvirt/ directory is a bit cluttered. Move yaml files to a subdirectory. Also update the yaml file permissions to be not executable. Test plan: PASS: regression of default and madcloud examples PASS: verify README examples are correct Story: 2010816 Task: 48617 Change-Id: Iad0cf3bdae31f48c2ee54250a3ab411880bba06f Signed-off-by: Michel Thebeau --- libvirt/README.rst | 6 +++--- libvirt/{ => yaml}/default.yaml | 0 libvirt/{ => yaml}/madcloud.yaml | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename libvirt/{ => yaml}/default.yaml (100%) mode change 100755 => 100644 rename libvirt/{ => yaml}/madcloud.yaml (100%) diff --git a/libvirt/README.rst b/libvirt/README.rst index 2564cf3..5ae65b4 100644 --- a/libvirt/README.rst +++ b/libvirt/README.rst @@ -28,9 +28,9 @@ an interactive shell that configures everything. Here's an example:: export EXTERNAL_NETWORK=172.30.20.0/24 export EXTERNAL_IP=172.30.20.1/24 -Using ``source ./readconfig.sh madcloud.yaml`` also sets the madcloud -environment variables. Use ``default.yaml`` or ``madcloud.yaml`` as -templates to make custom configurations. +Using ``source ./readconfig.sh yaml/madcloud.yaml`` also sets the madcloud +environment variables. Use ``yaml/default.yaml`` or ``yaml/madcloud.yaml`` +as templates to make custom configurations. Networking ---------- diff --git a/libvirt/default.yaml b/libvirt/yaml/default.yaml old mode 100755 new mode 100644 similarity index 100% rename from libvirt/default.yaml rename to libvirt/yaml/default.yaml diff --git a/libvirt/madcloud.yaml b/libvirt/yaml/madcloud.yaml similarity index 100% rename from libvirt/madcloud.yaml rename to libvirt/yaml/madcloud.yaml