summaryrefslogtreecommitdiff
path: root/src/nspawn
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2013-05-10 08:59:00 -0400
committerDave Reisner <dreisner@archlinux.org>2013-05-10 08:59:00 -0400
commitc2384970ff604e6341879bc965305b84533cdebf (patch)
tree41864729779b3a5d2ba8833adacbb94c72a6e755 /src/nspawn
parentddeb424198649c3993a54efc81652325b6e3bfa5 (diff)
nspawn: only warn about audit when booting the container
The audit subsystem isn't relevant when nspawn is only being used as a chroot.
Diffstat (limited to 'src/nspawn')
-rw-r--r--src/nspawn/nspawn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c
index 95d76eb3c3..32cfe05dcd 100644
--- a/src/nspawn/nspawn.c
+++ b/src/nspawn/nspawn.c
@@ -1296,7 +1296,7 @@ int main(int argc, char *argv[]) {
goto finish;
}
- if (audit_enabled()) {
+ if (arg_boot && audit_enabled()) {
log_warning("The kernel auditing subsystem is known to be incompatible with containers.\n"
"Please make sure to turn off auditing with 'audit=0' on the kernel command\n"
"line before using systemd-nspawn. Sleeping for 5s...\n");