chiark / gitweb /
uaccess: become a nop when not run on a systemd system
authorLennart Poettering <lennart@poettering.net>
Thu, 14 Jul 2011 20:51:19 +0000 (22:51 +0200)
committerLennart Poettering <lennart@poettering.net>
Thu, 14 Jul 2011 20:51:28 +0000 (22:51 +0200)
src/uaccess.c

index 435471e91a7fde6c053c7615494ca21d5b0422a1..a9713a5023cb751cbfc6ec07ceb80ef7b2342dec 100644 (file)
@@ -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];