summaryrefslogtreecommitdiff
path: root/src/shared/path-lookup.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/path-lookup.c')
-rw-r--r--src/shared/path-lookup.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/shared/path-lookup.c b/src/shared/path-lookup.c
index 1e5bb858e8..291a2f4054 100644
--- a/src/shared/path-lookup.c
+++ b/src/shared/path-lookup.c
@@ -222,14 +222,14 @@ static char** user_dirs(
char **generator_paths(SystemdRunningAs running_as) {
if (running_as == SYSTEMD_USER)
- return strv_new("/etc/systemd/user-generators",
- "/run/systemd/user-generators",
+ return strv_new("/run/systemd/user-generators",
+ "/etc/systemd/user-generators",
"/usr/local/lib/systemd/user-generators",
USER_GENERATOR_PATH,
NULL);
else
- return strv_new("/etc/systemd/system-generators",
- "/run/systemd/system-generators",
+ return strv_new("/run/systemd/system-generators",
+ "/etc/systemd/system-generators",
"/usr/local/lib/systemd/system-generators",
SYSTEM_GENERATOR_PATH,
NULL);