diff options
Diffstat (limited to 'src/uaccess.c')
-rw-r--r-- | src/uaccess.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/uaccess.c b/src/uaccess.c index 435471e91a..a9713a5023 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]; |