From: Lennart Poettering Date: Thu, 8 Jul 2010 22:03:09 +0000 (+0200) Subject: main: introduce $SYSTEMD_SKIP_API_MOUNTS to disable mounting of API FS X-Git-Tag: v2~6 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=ca326f6f2d02b36b3d34c0b2a8552b8be310bed6;hp=085b94eec37695a395c5edd5bb1e320ba12d2d1a main: introduce $SYSTEMD_SKIP_API_MOUNTS to disable mounting of API FS --- diff --git a/src/main.c b/src/main.c index 3124b7644..8717b8a96 100644 --- a/src/main.c +++ b/src/main.c @@ -849,7 +849,7 @@ int main(int argc, char *argv[]) { /* Mount /proc, /sys and friends, so that /proc/cmdline and * /proc/$PID/fd is available. */ - if (geteuid() == 0) + if (geteuid() == 0 && !getenv("SYSTEMD_SKIP_API_MOUNTS")) if (mount_setup() < 0) goto finish;