Skip to content

Commit fa474a9

Browse files
committed
install: Drop code/test uses of --security-opt
We think this is unnecessary now; part of improving the ergonomics of `bootc install` in general, but especially with the `to-existing-root` path. Once this lands, at some point later then we can also remove it from all of the documentation. But the most safe thing is to leave it in the docs for a bit longer. Closes: #928 Signed-off-by: Colin Walters <[email protected]>
1 parent f34e5dd commit fa474a9

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

tests-integration/src/install.rs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,7 @@ use fn_error_context::context;
1111
use libtest_mimic::Trial;
1212
use xshell::{cmd, Shell};
1313

14-
pub(crate) const BASE_ARGS: &[&str] = &[
15-
"podman",
16-
"run",
17-
"--rm",
18-
"--privileged",
19-
"--pid=host",
20-
"--security-opt",
21-
"label=disable",
22-
];
14+
pub(crate) const BASE_ARGS: &[&str] = &["podman", "run", "--rm", "--privileged", "--pid=host"];
2315

2416
// Arbitrary
2517
const NON_DEFAULT_STATEROOT: &str = "foo";

0 commit comments

Comments
 (0)