Post hoc, ergo propter hoc.

This commit is contained in:
Aoi Koizumi (古泉 あおい) 2021-09-12 01:23:37 +00:00
parent 6738eceb72
commit 1c144ba1db
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2021-09-11 Nova <novaburst@tilde.team>
* setnet-udhcpc: added an extra switch to the udhcpc command
* repository: due to some weird incident I caused myself all files got mode 0755, changed back to 0644 except for the executables.
2021-09-01 Nova <novaburst@tilde.team>
* 0.5.1 now has support for other DHCP clients
* Available ones are dhclient (default) , dhcpc , dhcpcd and udhcpc

View File

@ -505,8 +505,8 @@ config_ip_static() {
config_ip_dhcp() {
DEVNAME=$1
udhcpc -i ${DEVNAME} 2>&1 |
eval "${DIALOG} --title 'Running udhcpc ${DEVNAME}' \
udhcpc -n -i ${DEVNAME} 2>&1 |
eval "${DIALOG} --title 'Running udhcpc -n -i ${DEVNAME}' \
--programbox ${WINDOW_HEIGHT} ${WINDOW_WIDTH}" 2>${TMPFILE}
if [ $! -ne 0 ];then