chiark / gitweb /
service: remove distribution specific comments, the code runs unconditional now
authorKay Sievers <kay@vrfy.org>
Sat, 12 Jan 2013 22:50:56 +0000 (23:50 +0100)
committerKay Sievers <kay@vrfy.org>
Sat, 12 Jan 2013 22:50:56 +0000 (23:50 +0100)
src/core/service.c

index 70b251f0bb8402fcc541224bc1b34e6b3dd82d19..8e9e11236d9c683b7f7b2fd0b753753f691690c6 100644 (file)
@@ -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)