chill wrote: > That makes sense, thank you. > > So assuming that's the case, is there a way to override the default, > such that 'kill' (specified without a path) will use the busybox version > in /bin? > > It still seems possible that the start-stop-daemon is using the default > external command, rather than doing the same thing as kill via its own > source code, so I'd like to change the default and see if the behaviour > of the start-stop-daemon changes.
In bash, you can disable a builtin with "enable -n" but the busybox shell is ash, not bash and ash does not have the enable command. I have struggled to find decent documentation for ash but what I have found doesn't document any way to disable builtins. What is the issue with using /bin/kill as the command? ------------------------------------------------------------------------ coyrls's Profile: http://forums.slimdevices.com/member.php?userid=44253 View this thread: http://forums.slimdevices.com/showthread.php?t=113661 _______________________________________________ unix mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/unix
