Use f_isset() (introduced by r250317) instead of `f_quietly f_getvar ...'.

This commit is contained in:
Devin Teske 2013-06-02 22:54:36 +00:00
parent 42ade6a964
commit 80433743e3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=251268
3 changed files with 10 additions and 9 deletions

View file

@ -103,9 +103,8 @@ f_media_set_nfs()
f_dprintf "%s: $msg_net_device_init_failed\n" f_media_set_nfs
local hostname="${nfs%%:*}"
if f_quietly f_getvar $VAR_NAMESERVER && ! {
f_validate_ipaddr "$hostname" ||
f_validate_ipaddr6 "$hostname"
if f_isset $VAR_NAMESERVER && ! {
f_validate_ipaddr "$hostname" || f_validate_ipaddr6 "$hostname"
}; then
f_show_info "$msg_looking_up_host" "$hostname"
f_dprintf "%s Looking up hostname, %s, using host(1)" \

View file

@ -1133,10 +1133,11 @@ f_device_dialog_tcp()
# Otherwise, ask the question interactively.
#
local try6
if ! f_quietly f_getvar $VAR_NO_INET6 && {
if ! f_isset $VAR_NO_INET6 && {
{ f_getvar $VAR_TRY_RTSOL try6 && [ "$try6" = "YES" ]; } ||
{
! f_quietly f_getvar $VAR_TRY_RTSOL &&
# Only prompt the user when VAR_TRY_RTSOL is unset
! f_isset $VAR_TRY_RTSOL &&
f_dialog_noyes "$msg_try_ipv6_configuration"
}
}; then
@ -1169,7 +1170,8 @@ f_device_dialog_tcp()
#
local try4
if { f_getvar $VAR_TRY_DHCP try4 && [ "$try4" = "YES" ]; } || {
! f_quietly f_getvar $VAR_TRY_DHCP &&
# Only prompt the user when VAR_TRY_DHCP is unset
! f_isset $VAR_TRY_DHCP &&
f_dialog_noyes "$msg_try_dhcp_configuration"
}; then
f_quietly ifconfig $dev delete

View file

@ -83,7 +83,7 @@ f_category_desc_set()
for cat in $CATEGORIES; do
[ "$cat" = "$category" ] || continue
f_str2varname $cat varcat
f_quietly f_getvar _category_$varcat || continue
f_isset _category_$varcat || continue
found=1 && break
done
if [ ! "$found" ]; then