[systemd-commits] src/path-lookup.c
Lennart Poettering
lennart at kemper.freedesktop.org
Mon Apr 4 10:02:43 PDT 2011
src/path-lookup.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
New commits:
commit ef3102bf436a88fe565de1be655cdb8ca853c495
Author: Lennart Poettering <lennart at poettering.net>
Date: Mon Apr 4 19:02:32 2011 +0200
lookup: always also look into /usr/lib for units
diff --git a/src/path-lookup.c b/src/path-lookup.c
index fff9304..e5533c0 100644
--- a/src/path-lookup.c
+++ b/src/path-lookup.c
@@ -102,7 +102,11 @@ static char** user_dirs(void) {
if ((e = getenv("XDG_DATA_DIRS")))
data_dirs = strv_split(e, ":");
else
- data_dirs = strv_new("/usr/local/share", "/usr/share", NULL);
+ data_dirs = strv_new("/usr/local/share",
+ "/usr/local/lib",
+ "/usr/share",
+ "/usr/lib",
+ NULL);
if (!data_dirs)
goto fail;
@@ -187,9 +191,11 @@ int lookup_paths_init(LookupPaths *p, ManagerRunningAs running_as) {
SYSTEM_CONFIG_UNIT_PATH,
"/etc/systemd/system",
"/usr/local/share/systemd/system",
+ "/usr/local/lib/systemd/system",
"/usr/share/systemd/system",
- "/lib/systemd/system",
+ "/usr/lib/systemd/system",
SYSTEM_DATA_UNIT_PATH,
+ "/lib/systemd/system",
NULL)))
return -ENOMEM;
}
More information about the systemd-commits
mailing list