1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-19 22:50:17 +03:00

uaccess: become a nop when not run on a systemd system

This commit is contained in:
Lennart Poettering 2011-07-14 22:51:19 +02:00
parent 74b91131ed
commit d40c98162f

View 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];