diff options
-rw-r--r-- | meta/classes/systemd.bbclass | 4 | ||||
-rw-r--r-- | meta/classes/update-rc.d.bbclass | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/meta/classes/systemd.bbclass b/meta/classes/systemd.bbclass index 42fa554c12..69eeb9ef16 100644 --- a/meta/classes/systemd.bbclass +++ b/meta/classes/systemd.bbclass | |||
@@ -27,7 +27,7 @@ if [ -n "$D" ]; then | |||
27 | OPTS="--root=$D" | 27 | OPTS="--root=$D" |
28 | fi | 28 | fi |
29 | 29 | ||
30 | if type systemctl >/dev/null; then | 30 | if type systemctl >/dev/null 2>/dev/null; then |
31 | systemctl $OPTS ${SYSTEMD_AUTO_ENABLE} ${SYSTEMD_SERVICE} | 31 | systemctl $OPTS ${SYSTEMD_AUTO_ENABLE} ${SYSTEMD_SERVICE} |
32 | 32 | ||
33 | if [ -z "$D" -a "${SYSTEMD_AUTO_ENABLE}" = "enable" ]; then | 33 | if [ -z "$D" -a "${SYSTEMD_AUTO_ENABLE}" = "enable" ]; then |
@@ -37,7 +37,7 @@ fi | |||
37 | } | 37 | } |
38 | 38 | ||
39 | systemd_prerm() { | 39 | systemd_prerm() { |
40 | if type systemctl >/dev/null; then | 40 | if type systemctl >/dev/null 2>/dev/null; then |
41 | if [ -z "$D" ]; then | 41 | if [ -z "$D" ]; then |
42 | systemctl stop ${SYSTEMD_SERVICE} | 42 | systemctl stop ${SYSTEMD_SERVICE} |
43 | fi | 43 | fi |
diff --git a/meta/classes/update-rc.d.bbclass b/meta/classes/update-rc.d.bbclass index 9f1e28a59d..0c2b94a25b 100644 --- a/meta/classes/update-rc.d.bbclass +++ b/meta/classes/update-rc.d.bbclass | |||
@@ -18,7 +18,7 @@ if test "x$D" != "x"; then | |||
18 | else | 18 | else |
19 | OPT="-s" | 19 | OPT="-s" |
20 | fi | 20 | fi |
21 | if type update-rc.d >/dev/null; then | 21 | if type update-rc.d >/dev/null 2>/dev/null; then |
22 | update-rc.d $OPT ${INITSCRIPT_NAME} ${INITSCRIPT_PARAMS} | 22 | update-rc.d $OPT ${INITSCRIPT_NAME} ${INITSCRIPT_PARAMS} |
23 | fi | 23 | fi |
24 | } | 24 | } |
@@ -35,7 +35,7 @@ if test "$D" != ""; then | |||
35 | else | 35 | else |
36 | OPT="" | 36 | OPT="" |
37 | fi | 37 | fi |
38 | if type update-rc.d >/dev/null; then | 38 | if type update-rc.d >/dev/null 2>/dev/null; then |
39 | update-rc.d $OPT ${INITSCRIPT_NAME} remove | 39 | update-rc.d $OPT ${INITSCRIPT_NAME} remove |
40 | fi | 40 | fi |
41 | } | 41 | } |