X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fuaccess.c;h=a9713a5023cb751cbfc6ec07ceb80ef7b2342dec;hb=d40c98162feaae6e43fa51d702da4153e3ec19dc;hp=435471e91a7fde6c053c7615494ca21d5b0422a1;hpb=74b91131ed09850ed487a2f7849147ff6f80194d;p=elogind.git 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];