diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-02-19 14:20:00 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-02-19 14:20:00 +0100 |
commit | b5c6cf87342bedeb67fbbc4f3f512af1603a461c (patch) | |
tree | b0e738ce93358a6663bde29606380d954c4c8f12 /src | |
parent | 783bd6120963a6bdeb0e45d034eeba21ce79e646 (diff) |
main: refuse --test as root
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index 96a282a34f..d1be83d44f 100644 --- a/src/main.c +++ b/src/main.c @@ -1012,6 +1012,11 @@ int main(int argc, char *argv[]) { if (parse_argv(argc, argv) < 0) goto finish; + if (arg_action == ACTION_TEST && geteuid() == 0) { + log_error("Don't run test mode as root."); + goto finish; + } + /* If Plymouth is being run make sure we show the status, so * that there's something nice to see when people press Esc */ if (access("/dev/.systemd/plymouth", F_OK) >= 0) |