Skip to content

Commit

Permalink
v9.2
Browse files Browse the repository at this point in the history
- DietPi-Config | Remove obsolete variable
  • Loading branch information
MichaIng committed Mar 3, 2024
1 parent b04c670 commit 264e07a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dietpi/dietpi-config
Original file line number Diff line number Diff line change
Expand Up @@ -1936,7 +1936,7 @@ If unsure, set any value, 'Ondemand Down Factor' option on the next screen will
# - Ethernet
if (( ! $ETH_DISABLED ))
then
{ journalctl -fn 0 -u "ifup@$ETH_DEV_IFACE" & pid=$!; } 2> /dev/null
{ journalctl -fn 0 -u "ifup@$ETH_DEV_IFACE" & } 2> /dev/null
G_EXEC_NOHALT=1 G_EXEC_OUTPUT=1 G_EXEC systemctl restart "ifup@$ETH_DEV_IFACE"
{ kill -2 %% && wait; } 2> /dev/null
else
Expand All @@ -1945,7 +1945,7 @@ If unsure, set any value, 'Ondemand Down Factor' option on the next screen will
# - WiFi: Only try to configure if this is either a hotspot or an SSID has been configured
if (( ! $WIFI_DISABLED )) && { (( $WIFI_HOTSPOT )) || grep -q '^network=' /etc/wpa_supplicant/wpa_supplicant.conf; }
then
{ journalctl -fn 0 -u "ifup@$WIFI_DEV_IFACE" & pid=$!; } 2> /dev/null
{ journalctl -fn 0 -u "ifup@$WIFI_DEV_IFACE" & } 2> /dev/null
G_EXEC_NOHALT=1 G_EXEC_OUTPUT=1 G_EXEC systemctl restart "ifup@$WIFI_DEV_IFACE"
{ kill -2 %% && wait; } 2> /dev/null
else
Expand Down

0 comments on commit 264e07a

Please sign in to comment.