Fix errors in init.sh. Fixes #2431

This commit is contained in:
grossmj
2024-10-22 12:18:28 +10:00
parent 9990666076
commit 6e66b26b88

View File

@ -25,7 +25,7 @@ PATH=/gns3/bin:/tmp/gns3/bin:/sbin:$PATH
# bootstrap busybox commands # bootstrap busybox commands
if [ ! -d /tmp/gns3/bin ]; then if [ ! -d /tmp/gns3/bin ]; then
busybox mkdir -p /tmp/gns3/bin busybox mkdir -p /tmp/gns3/bin
for applet in `busybox --list-full` for applet in `busybox --list`
do do
ln -s /gns3/bin/busybox "/tmp/gns3/bin/$applet" ln -s /gns3/bin/busybox "/tmp/gns3/bin/$applet"
done done