Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/openrc:master commit in: local.d/
Date: Mon, 25 Feb 2013 22:31:44
Message-Id: 1361829865.ceb88fc465f1aa9fa5f9391ebf69aaa8516ab18c.WilliamH@OpenRC
1 commit: ceb88fc465f1aa9fa5f9391ebf69aaa8516ab18c
2 Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
3 AuthorDate: Mon Feb 25 22:04:25 2013 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 25 22:04:25 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=ceb88fc4
7
8 local.d: update README
9
10 Remind users that if they put a long-running process in /etc/local.d,
11 they can delay their boot or shutdown processing.
12
13 Reported-by: toralf.foerster <AT> gmx.de
14 X-Gentoo-Bug: 456650
15 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=456650
16
17 ---
18 local.d/README | 5 +++++
19 1 files changed, 5 insertions(+), 0 deletions(-)
20
21 diff --git a/local.d/README b/local.d/README
22 index d3c1156..352847b 100644
23 --- a/local.d/README
24 +++ b/local.d/README
25 @@ -7,3 +7,8 @@ executable and it has a .stop extension, it will be run when the local
26 service is stopped.
27
28 All files are processed in lexical order.
29 +
30 +Keep in mind that files in this directory are processed sequencially,
31 +and the local service is not considered started or stopped until
32 +everything is processed, so if you have a process which takes a long
33 +time to run, it can delay your boot or shutdown processing.