tree: fix more

Signed-off-by: AuxXxilium <info@auxxxilium.tech>
This commit is contained in:
AuxXxilium
2025-10-04 16:00:20 +02:00
parent 670c998efe
commit 6ecad0744f
3 changed files with 2 additions and 3 deletions

View File

@@ -187,7 +187,7 @@ function arcVersion() {
if is_in_array "${PLATFORM}" "${IGPU1L[@]}" && grep -iq "${IGPUID}" "${ARC_PATH}/include/i915ids"; then
initConfigKey "addons.i915" "" "${USER_CONFIG_FILE}"
fi
if [ "${SASDRIVES}" -gt 0 ] && [ "${DT}" = "true" ]; then
if [ "${EXTERNALCONTROLLER}" = "true" ]; then
initConfigKey "addons.smartctl" "" "${USER_CONFIG_FILE}"
fi
WEBHOOKNOTIFY="$(readConfigKey "arc.webhooknotify" "${USER_CONFIG_FILE}")"

View File

@@ -631,7 +631,7 @@ function dependenciesUpdate() {
--checklist "Use SPACE to select and ENTER to confirm:" 15 50 6 \
"${CHECKLIST_OPTS[@]}" 3>&1 1>&2 2>&3)
[ $? -ne 0 ] && dialog --infobox "Update canceled by the user." 3 40 && sleep 2 && clear && return
[ $? -ne 0 ] && return
FAILED=false
for idx in $CHOICES; do

View File

@@ -135,7 +135,6 @@ for N in ${ETHX}; do
sleep 1
fi
[ "${N::3}" = "eth" ] && ethtool -s "${N}" wol g 2>/dev/null || true
# [ "${N::3}" = "eth" ] && ethtool -K ${N} rxhash off 2>/dev/null || true
initConfigKey "${N}" "${MACR}" "${USER_CONFIG_FILE}"
done
ETHN=$(echo ${ETHX} | wc -w)