summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKay Sievers <kay@vrfy.org>2013-01-12 23:50:56 +0100
committerKay Sievers <kay@vrfy.org>2013-01-12 23:50:56 +0100
commit20771ae336a7c72dc6d2cac2f0c9b0c0f3003379 (patch)
tree622052647a84bb18d38fc3b9c5c00778ad1f6b21 /src
parent85a3fa0e1979a13683baa1f3dda6b6d0005f20ab (diff)
service: remove distribution specific comments, the code runs unconditional now
Diffstat (limited to 'src')
-rw-r--r--src/core/service.c4
1 files changed, 2 insertions, 2 deletions
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)