summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/update-rc.d.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/update-rc.d.bbclass b/meta/classes/update-rc.d.bbclass
index e14659d118..9437e9cc31 100644
--- a/meta/classes/update-rc.d.bbclass
+++ b/meta/classes/update-rc.d.bbclass
@@ -16,7 +16,7 @@ updatercd_postinst() {
16# test if there is a previous init script there, ie, we are updating the package 16# test if there is a previous init script there, ie, we are updating the package
17# if so, we stop the service and remove it before we install from the new package 17# if so, we stop the service and remove it before we install from the new package
18if type update-rc.d >/dev/null 2>/dev/null; then 18if type update-rc.d >/dev/null 2>/dev/null; then
19 if [ -z "$D" -a `test -f "${INIT_D_DIR}/${INITSCRIPT_NAME}"` ]; then 19 if [ -z "$D" -a -f "${INIT_D_DIR}/${INITSCRIPT_NAME}" ]; then
20 ${INIT_D_DIR}/${INITSCRIPT_NAME} stop 20 ${INIT_D_DIR}/${INITSCRIPT_NAME} stop
21 fi 21 fi
22 if [ -n "$D" ]; then 22 if [ -n "$D" ]; then