[git commit] examples: remove /sbin/ prefixes, system should be configured with $PATH to find utilities

Denys Vlasenko vda.linux at googlemail.com
Sun Dec 13 20:35:26 UTC 2020


commit: https://git.busybox.net/busybox/commit/?id=1b367cbeda9447d771b09831c1e9c83cadbee55e
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 examples/inetd.conf            | 2 +-
 examples/udhcp/sample.bound    | 8 ++++----
 examples/udhcp/sample.deconfig | 2 +-
 examples/udhcp/sample.renew    | 8 ++++----
 4 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/examples/inetd.conf b/examples/inetd.conf
index ca7e3d8e1..78b10e3ac 100644
--- a/examples/inetd.conf
+++ b/examples/inetd.conf
@@ -31,7 +31,7 @@ time     dgram   udp	wait	root	internal
 #ftp	stream	tcp	nowait	root	/usr/sbin/tcpd	in.ftpd
 #telnet	stream	tcp	nowait	root	/sbin/telnetd	/sbin/telnetd
 #nntp	stream	tcp	nowait	root	tcpd	in.nntpd
-#smtp  stream  tcp     nowait  root    tcpd    sendmail -v
+#smtp	stream  tcp     nowait  root    tcpd    sendmail -v
 #
 # Shell, login, exec and talk are BSD protocols.
 #
diff --git a/examples/udhcp/sample.bound b/examples/udhcp/sample.bound
index efd98cf15..15a7775e9 100755
--- a/examples/udhcp/sample.bound
+++ b/examples/udhcp/sample.bound
@@ -6,12 +6,12 @@ RESOLV_CONF="/etc/udhcpc/resolv.conf"
 [ -n "$broadcast" ] && BROADCAST="broadcast $broadcast"
 [ -n "$subnet" ] && NETMASK="netmask $subnet"
 
-/sbin/ifconfig $interface $ip $BROADCAST $NETMASK
+ifconfig $interface $ip $BROADCAST $NETMASK
 
 if [ -n "$router" ]
 then
 	echo "deleting routers"
-	while /sbin/route del default gw 0.0.0.0 dev $interface
+	while route del default gw 0.0.0.0 dev $interface
 	do :
 	done
 
@@ -23,9 +23,9 @@ then
 			# /32 instructs kernel to always use routing for all outgoing packets
 			# (they can never be sent to local subnet - there is no local subnet for /32).
 			# Used in datacenters, avoids the need for private ip-addresses between two hops.
-			/sbin/ip route add $i dev $interface
+			ip route add $i dev $interface
 		fi
-		/sbin/route add default gw $i dev $interface metric $((metric++))
+		route add default gw $i dev $interface metric $((metric++))
 	done
 fi
 
diff --git a/examples/udhcp/sample.deconfig b/examples/udhcp/sample.deconfig
index b221bcf12..a893de83f 100755
--- a/examples/udhcp/sample.deconfig
+++ b/examples/udhcp/sample.deconfig
@@ -1,4 +1,4 @@
 #!/bin/sh
 # Sample udhcpc deconfig script
 
-/sbin/ifconfig $interface 0.0.0.0
+ifconfig $interface 0.0.0.0
diff --git a/examples/udhcp/sample.renew b/examples/udhcp/sample.renew
index efd98cf15..15a7775e9 100755
--- a/examples/udhcp/sample.renew
+++ b/examples/udhcp/sample.renew
@@ -6,12 +6,12 @@ RESOLV_CONF="/etc/udhcpc/resolv.conf"
 [ -n "$broadcast" ] && BROADCAST="broadcast $broadcast"
 [ -n "$subnet" ] && NETMASK="netmask $subnet"
 
-/sbin/ifconfig $interface $ip $BROADCAST $NETMASK
+ifconfig $interface $ip $BROADCAST $NETMASK
 
 if [ -n "$router" ]
 then
 	echo "deleting routers"
-	while /sbin/route del default gw 0.0.0.0 dev $interface
+	while route del default gw 0.0.0.0 dev $interface
 	do :
 	done
 
@@ -23,9 +23,9 @@ then
 			# /32 instructs kernel to always use routing for all outgoing packets
 			# (they can never be sent to local subnet - there is no local subnet for /32).
 			# Used in datacenters, avoids the need for private ip-addresses between two hops.
-			/sbin/ip route add $i dev $interface
+			ip route add $i dev $interface
 		fi
-		/sbin/route add default gw $i dev $interface metric $((metric++))
+		route add default gw $i dev $interface metric $((metric++))
 	done
 fi
 


More information about the busybox-cvs mailing list