From: Lennart Poettering Date: Thu, 14 Jul 2011 20:51:19 +0000 (+0200) Subject: uaccess: become a nop when not run on a systemd system X-Git-Tag: v31~48 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=d40c98162feaae6e43fa51d702da4153e3ec19dc uaccess: become a nop when not run on a systemd system --- diff --git a/src/uaccess.c b/src/uaccess.c index 435471e91..a9713a502 100644 --- a/src/uaccess.c +++ b/src/uaccess.c @@ -25,6 +25,7 @@ #include "logind-acl.h" #include "util.h" #include "log.h" +#include "sd-daemon.h" int main(int argc, char *argv[]) { int r; @@ -43,6 +44,11 @@ int main(int argc, char *argv[]) { goto finish; } + /* Make sure we don't muck around with ACLs the system is not + * running systemd. */ + if (!sd_booted()) + return 0; + path = argv[1]; seat = argc < 3 || isempty(argv[2]) ? "seat0" : argv[2];