From: Kay Sievers Date: Sat, 12 Jan 2013 22:50:56 +0000 (+0100) Subject: service: remove distribution specific comments, the code runs unconditional now X-Git-Tag: v198~566 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=20771ae336a7c72dc6d2cac2f0c9b0c0f3003379;p=elogind.git service: remove distribution specific comments, the code runs unconditional now --- diff --git a/src/core/service.c b/src/core/service.c index 70b251f0b..8e9e11236 100644 --- a/src/core/service.c +++ b/src/core/service.c @@ -1012,14 +1012,14 @@ static int service_load_sysv_name(Service *s, const char *name) { r = service_load_sysv_path(s, path); if (r >= 0 && UNIT(s)->load_state == UNIT_STUB) { - /* Try Debian style *.sh source'able init scripts */ + /* Try *.sh source'able init scripts */ strcat(path, ".sh"); r = service_load_sysv_path(s, path); } free(path); if (r >= 0 && UNIT(s)->load_state == UNIT_STUB) { - /* Try Frugalware style rc.* init scripts */ + /* Try rc.* init scripts */ path = strjoin(*p, "/rc.", name, NULL); if (!path)