diff options
Diffstat (limited to 'meta/classes/update-rc.d.bbclass')
-rw-r--r-- | meta/classes/update-rc.d.bbclass | 2 |
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 |
18 | if type update-rc.d >/dev/null 2>/dev/null; then | 18 | if 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 |