diff --git a/ostree-ext/.github/workflows/bootc.yml b/ostree-ext/.github/workflows/bootc.yml index 8e8dbe78c..97b2dc0b4 100644 --- a/ostree-ext/.github/workflows/bootc.yml +++ b/ostree-ext/.github/workflows/bootc.yml @@ -59,7 +59,7 @@ jobs: - name: Integration tests run: | set -xeuo pipefail - sudo podman run --rm -ti --privileged -v ./usr/bin/bootc:/usr/bin/bootc --pid=host --security-opt label=disable \ + sudo podman run --rm -ti --privileged -v ./usr/bin/bootc:/usr/bin/bootc --pid=host \ quay.io/centos-bootc/centos-bootc-dev:stream9 bootc install to-filesystem \ --karg=foo=bar --disable-selinux --replace=alongside /target diff --git a/tests-integration/src/install.rs b/tests-integration/src/install.rs index c4eb31dd9..cdba047b5 100644 --- a/tests-integration/src/install.rs +++ b/tests-integration/src/install.rs @@ -11,15 +11,7 @@ use fn_error_context::context; use libtest_mimic::Trial; use xshell::{cmd, Shell}; -pub(crate) const BASE_ARGS: &[&str] = &[ - "podman", - "run", - "--rm", - "--privileged", - "--pid=host", - "--security-opt", - "label=disable", -]; +pub(crate) const BASE_ARGS: &[&str] = &["podman", "run", "--rm", "--privileged", "--pid=host"]; // Arbitrary const NON_DEFAULT_STATEROOT: &str = "foo";