From e8a8ca6b65b2a04e26f5d5adaf161d776b16bb38 Mon Sep 17 00:00:00 2001 From: billz Date: Fri, 3 May 2024 09:01:26 +0200 Subject: [PATCH] Add _rfkill_info --- installers/debuglog.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/installers/debuglog.sh b/installers/debuglog.sh index d050f203..db0bd45c 100755 --- a/installers/debuglog.sh +++ b/installers/debuglog.sh @@ -106,6 +106,7 @@ function _generate_log() { _packages_info _raspap_info _usb_info + _rfkill_info _wpa_info _dnsmasq_info _dhcpcd_info @@ -192,6 +193,12 @@ function _usb_info() { _log_write "${stdout}" } +function _rfkill_info() { + local stdout=$(rfkill list) + _log_separator "rfkill" + _log_write "${stdout}" +} + function _wpa_info() { local stdout=$(wpa_cli status) _log_separator "WPA Supplicant"