]> git.pld-linux.org Git - packages/glibc.git/commitdiff
- upstart controlled
authorElan Ruusamäe <glen@pld-linux.org>
Sat, 30 Jul 2011 17:12:42 +0000 (17:12 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    nscd.init -> 1.19

nscd.init

index 3429b365dd077ee9f90495884c6161f3051e9bbb..500ebfb90930947037395fc93d9004cad281a6fc 100644 (file)
--- a/nscd.init
+++ b/nscd.init
@@ -53,6 +53,15 @@ condrestart() {
        fi
 }
 
+upstart_controlled --except reload
+
+# return true if service is considered "up"
+# with upstart, upstart is consulted
+# otherwise lockfile in subsys must exist
+is_service_up() {
+       use_upstart && is_upstart_running "$1" || [ -f /var/lock/subsys/"$1" ]
+}
+
 RETVAL=0
 # See how we were called.
 case "$1" in
@@ -73,7 +82,7 @@ case "$1" in
        condrestart 7
        ;;
   reload)
-       if [ -f /var/lock/subsys/nscd ]; then
+       if is_service_up nscd; then
                for db in passwd group hosts; do
                        show "Invalidating %s cache" $db; busy
                        nscd -i $db && ok || fail
This page took 0.045352 seconds and 4 git commands to generate.