diff options
Diffstat (limited to 'src/core/service.c')
-rw-r--r-- | src/core/service.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/service.c b/src/core/service.c index a4e419b795..70b93e8446 100644 --- a/src/core/service.c +++ b/src/core/service.c @@ -977,9 +977,9 @@ static int service_load_sysv_name(Service *s, const char *name) { /* For SysV services we strip the rc.* and *.sh * prefixes/suffixes. */ - if (endswith(name, ".sh.service")) + if (startswith(name, "rc.") || + endswith(name, ".sh.service")) return -ENOENT; - if (startswith(name, "rc.")) STRV_FOREACH(p, UNIT(s)->manager->lookup_paths.sysvinit_path) { char *path; |