| Message ID | 20260210115035.670980-1-peter.marko@siemens.com |
|---|---|
| State | Under Review |
| Headers | show |
| Series | busybox: adapt busybox-udhcpd init script to new start-stop-daemon path | expand |
diff --git a/meta/recipes-core/busybox/files/busybox-udhcpd b/meta/recipes-core/busybox/files/busybox-udhcpd index c43903e8dc..d35f8540d1 100755 --- a/meta/recipes-core/busybox/files/busybox-udhcpd +++ b/meta/recipes-core/busybox/files/busybox-udhcpd @@ -15,12 +15,12 @@ case "$1" in echo "error: /etc/udhcpd.conf is missing." exit 1 fi - /sbin/start-stop-daemon -S -b -n $NAME -a $DAEMON -- $ARGS + /usr/sbin/start-stop-daemon -S -b -n $NAME -a $DAEMON -- $ARGS echo "done." ;; stop) echo -n "stopping $DESC: $NAME... " - /sbin/start-stop-daemon -K -n $NAME + /usr/sbin/start-stop-daemon -K -n $NAME echo "done." ;; restart)