Remove libvirt workaround
This commit is contained in:
parent
ef07f2b81f
commit
b4dcfc4480
10 changed files with 0 additions and 70 deletions
|
|
@ -71,13 +71,6 @@ EOFKS
|
|||
echo "============================"
|
||||
}
|
||||
|
||||
# workaround for bug https://bugzilla.redhat.com/show_bug.cgi?id=2213660
|
||||
if [[ "$VERSION_ID" == "9.3" || "$VERSION_ID" == "9" ]]; then
|
||||
sudo tee /etc/sysconfig/libvirtd << EOF > /dev/null
|
||||
LIBVIRTD_ARGS=
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Start libvirtd and test it.
|
||||
greenprint "🚀 Starting libvirt daemon"
|
||||
sudo systemctl start libvirtd
|
||||
|
|
|
|||
|
|
@ -8,13 +8,6 @@ source /usr/libexec/tests/osbuild-composer/shared_lib.sh
|
|||
# Provision the software under test.
|
||||
/usr/libexec/osbuild-composer-test/provision.sh none
|
||||
|
||||
# workaround for bug https://bugzilla.redhat.com/show_bug.cgi?id=2213660
|
||||
if [[ "$VERSION_ID" == "9.3" || "$VERSION_ID" == "9" ]]; then
|
||||
sudo tee /etc/sysconfig/libvirtd << EOF > /dev/null
|
||||
LIBVIRTD_ARGS=
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Start firewalld
|
||||
greenprint "Start firewalld"
|
||||
sudo systemctl enable --now firewalld
|
||||
|
|
|
|||
|
|
@ -11,13 +11,6 @@ source /etc/os-release
|
|||
|
||||
source /usr/libexec/tests/osbuild-composer/shared_lib.sh
|
||||
|
||||
# workaround for bug https://bugzilla.redhat.com/show_bug.cgi?id=2213660
|
||||
if [[ "$VERSION_ID" == "9.3" || "$VERSION_ID" == "9" ]]; then
|
||||
sudo tee /etc/sysconfig/libvirtd << EOF > /dev/null
|
||||
LIBVIRTD_ARGS=
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Start libvirtd and test it.
|
||||
greenprint "🚀 Starting libvirt daemon"
|
||||
sudo systemctl start libvirtd
|
||||
|
|
|
|||
|
|
@ -10,13 +10,6 @@ ARCH=$(uname -m)
|
|||
|
||||
source /usr/libexec/tests/osbuild-composer/shared_lib.sh
|
||||
|
||||
# workaround for bug https://bugzilla.redhat.com/show_bug.cgi?id=2213660
|
||||
if [[ "$VERSION_ID" == "9.3" || "$VERSION_ID" == "9" ]]; then
|
||||
sudo tee /etc/sysconfig/libvirtd << EOF > /dev/null
|
||||
LIBVIRTD_ARGS=
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Install and start firewalld
|
||||
greenprint "🔧 Install and start firewalld"
|
||||
sudo dnf install -y firewalld
|
||||
|
|
|
|||
|
|
@ -10,13 +10,6 @@ ARCH=$(uname -m)
|
|||
|
||||
source /usr/libexec/tests/osbuild-composer/shared_lib.sh
|
||||
|
||||
# workaround for bug https://bugzilla.redhat.com/show_bug.cgi?id=2213660
|
||||
if [[ "$VERSION_ID" == "9.3" || "$VERSION_ID" == "9" ]]; then
|
||||
sudo tee /etc/sysconfig/libvirtd << EOF > /dev/null
|
||||
LIBVIRTD_ARGS=
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Install openshift client
|
||||
greenprint "🔧 Installing oenshift client(oc)"
|
||||
curl https://osbuild-storage.s3.amazonaws.com/oc-4.9.0-linux.tar.gz | sudo tar -xz -C /usr/local/bin/
|
||||
|
|
|
|||
|
|
@ -32,13 +32,6 @@ case "${ID}-${VERSION_ID}" in
|
|||
exit 1;;
|
||||
esac
|
||||
|
||||
# workaround for bug https://bugzilla.redhat.com/show_bug.cgi?id=2213660
|
||||
if [[ "$VERSION_ID" == "9.3" || "$VERSION_ID" == "9" ]]; then
|
||||
sudo tee /etc/sysconfig/libvirtd << EOF > /dev/null
|
||||
LIBVIRTD_ARGS=
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Start libvirtd and test it.
|
||||
greenprint "🚀 Starting libvirt daemon"
|
||||
sudo systemctl start libvirtd
|
||||
|
|
|
|||
|
|
@ -10,13 +10,6 @@ ARCH=$(uname -m)
|
|||
|
||||
source /usr/libexec/tests/osbuild-composer/shared_lib.sh
|
||||
|
||||
# workaround for bug https://bugzilla.redhat.com/show_bug.cgi?id=2213660
|
||||
if [[ "$VERSION_ID" == "9.3" || "$VERSION_ID" == "9" ]]; then
|
||||
sudo tee /etc/sysconfig/libvirtd << EOF > /dev/null
|
||||
LIBVIRTD_ARGS=
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Start libvirtd and test it.
|
||||
greenprint "🚀 Starting libvirt daemon"
|
||||
sudo systemctl start libvirtd
|
||||
|
|
|
|||
|
|
@ -33,13 +33,6 @@ if [[ "$VERSION_ID" == "9.4" || "$VERSION_ID" == "9" ]]; then
|
|||
fi
|
||||
sudo systemctl restart fdo-aio
|
||||
|
||||
# workaround for bug https://bugzilla.redhat.com/show_bug.cgi?id=2213660
|
||||
if [[ "$VERSION_ID" == "9.3" || "$VERSION_ID" == "9" ]]; then
|
||||
sudo tee /etc/sysconfig/libvirtd << EOF > /dev/null
|
||||
LIBVIRTD_ARGS=
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Start libvirtd and test it.
|
||||
greenprint "🚀 Starting libvirt daemon"
|
||||
sudo systemctl start libvirtd
|
||||
|
|
|
|||
|
|
@ -90,13 +90,6 @@ case "${ID}-${VERSION_ID}" in
|
|||
exit 1;;
|
||||
esac
|
||||
|
||||
# workaround for bug https://bugzilla.redhat.com/show_bug.cgi?id=2213660
|
||||
if [[ "$VERSION_ID" == "9.3" || "$VERSION_ID" == "9" ]]; then
|
||||
sudo tee /etc/sysconfig/libvirtd << EOF > /dev/null
|
||||
LIBVIRTD_ARGS=
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Start libvirtd and test it.
|
||||
greenprint "🚀 Starting libvirt daemon"
|
||||
sudo systemctl start libvirtd
|
||||
|
|
|
|||
|
|
@ -34,13 +34,6 @@ function greenprint {
|
|||
echo -e "\033[1;32m[$(date -Isecond)] ${1}\033[0m"
|
||||
}
|
||||
|
||||
# workaround for bug https://bugzilla.redhat.com/show_bug.cgi?id=2213660
|
||||
if [[ "$VERSION_ID" == "9.3" || "$VERSION_ID" == "9" ]]; then
|
||||
sudo tee /etc/sysconfig/libvirtd << EOF > /dev/null
|
||||
LIBVIRTD_ARGS=
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Start libvirtd and test it.
|
||||
greenprint "🚀 Starting libvirt daemon"
|
||||
sudo systemctl start libvirtd
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue