mirror of
git://slackware.nl/current.git
synced 2025-01-18 22:27:20 +01:00
57f9e5505b
patches/packages/network-scripts-15.0-noarch-19_slack15.0.txz: Rebuilt. This update fixes a bug and adds a new feature: Re-add support for the DHCP_IPADDR parameter from rc.inet1.conf. Expand the help text for DHCP_IPADDR in rc.inet1.conf. Add support for a DHCP_OPTS parameter. Thanks to ljb643 and Darren 'Tadgy' Austin. patches/packages/vim-9.0.1667-x86_64-1_slack15.0.txz: Upgraded. This fixes a rare divide-by-zero bug that could cause vim to crash. In an interactive program such as vim, I can't really see this qualifying as a security issue, but since it was brought up as such on LQ we'll just go along with it this time. :) Thanks to marav for the heads-up. (* Security fix *) patches/packages/vim-gvim-9.0.1667-x86_64-1_slack15.0.txz: Upgraded.
13 lines
349 B
Bash
13 lines
349 B
Bash
#!/bin/sh
|
|
#BLURB="Configure basic network settings"
|
|
TMP=/var/log/setup/tmp
|
|
dialog --title "CONFIGURE NETWORK?" --yesno "Would you like to \
|
|
configure your network?" 5 60
|
|
if [ $? = 0 ]; then
|
|
while [ 0 ]; do # we're gonna do this until we get it right :-)
|
|
sh sbin/netconfig $*
|
|
if [ "$?" = "0" ]; then # success
|
|
break;
|
|
fi
|
|
done
|
|
fi
|