From bfc4a81e06a66695892e99b90661e0af7c533975 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Tue, 22 Oct 2024 12:34:30 +0200 Subject: [PATCH] containers/ws: Drop obsolete install checks for cockpit Since commit ab361484671 the cockpit/ws container offers beibooting, so we don't require the bridge and cockpit pages on the host any more. --- containers/ws/label-install | 8 -------- 1 file changed, 8 deletions(-) diff --git a/containers/ws/label-install b/containers/ws/label-install index ffa7128eec36..17cf9b82f2a3 100755 --- a/containers/ws/label-install +++ b/containers/ws/label-install @@ -14,14 +14,6 @@ if [ ! -d /host/etc -o ! -d /host/proc -o ! -d /host/var/run ]; then echo "cockpit-run: host file system is not mounted at /host" >&2 exit 1 fi -if [ ! -f /host/usr/bin/cockpit-bridge ]; then - echo "cockpit-run: cockpit-bridge must be installed in the host" >&2 - exit 1 -fi -if [ ! -d /host/usr/share/cockpit ]; then - echo "cockpit-run: cockpit-system and other resources must be installed in the host" >&2 - exit 1 -fi if [ -f /host/usr/libexec/cockpit-ws ]; then echo "cockpit-ws must not be installed in the host" >&2 exit 1