X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fpath-lookup.c;h=28336ebf150bda755e8f0344aae3429d3af10fd6;hp=4160d5586272d44eee3bcb85d693533b8ed1eca9;hb=03467c88fba6caeffce2a57a31ee2344e3d3ba31;hpb=a3d4e06dfa234bf2a9398c8e534b705b68aa50a1 diff --git a/src/path-lookup.c b/src/path-lookup.c index 4160d5586..28336ebf1 100644 --- a/src/path-lookup.c +++ b/src/path-lookup.c @@ -1,4 +1,4 @@ -/*-*- Mode: C; c-basic-offset: 8 -*-*/ +/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ /*** This file is part of systemd. @@ -181,8 +181,12 @@ int lookup_paths_init(LookupPaths *p, ManagerRunningAs running_as) { return -ENOMEM; } else if (!(p->unit_path = strv_new( - SYSTEM_CONFIG_UNIT_PATH, /* /etc/systemd/system/ */ - SYSTEM_DATA_UNIT_PATH, /* /lib/systemd/system/ */ + SYSTEM_CONFIG_UNIT_PATH, + "/etc/systemd/system", + "/usr/local/share/systemd/system", + "/usr/share/systemd/system", + "/lib/systemd/system", + SYSTEM_DATA_UNIT_PATH, NULL))) return -ENOMEM; }