From 359c92f14f509e518a80d7a14e43c0100ba08b1e Mon Sep 17 00:00:00 2001 From: Harald Hope Date: Tue, 15 Dec 2020 16:23:01 -0800 Subject: [PATCH] forgot to update recommends with lvs and mdadm --- inxi | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/inxi b/inxi index de814b7..28771c1 100755 --- a/inxi +++ b/inxi @@ -2642,8 +2642,8 @@ sub check_items { } else { @data = qw(blockdev dig dmidecode fdisk file hddtemp ifconfig ip ipmitool - ipmi-sensors lsblk lsusb modinfo runlevel sensors smartctl strings sudo - tree upower uptime); + ipmi-sensors lsblk lsusb lvs mdadm modinfo runlevel sensors smartctl strings + sudo tree upower uptime); } $b_program = 1; $item = 'Program'; @@ -2961,12 +2961,19 @@ sub item_data { 'rpm' => 'ipmitool', }), 'lsblk' => ({ - 'info' => '-o unmounted file system (best option)', + 'info' => '-L LUKS/bcache; -o unmounted file system (best option)', 'info-bsd' => '-o unmounted file system', 'apt' => 'util-linux', 'pacman' => 'util-linux', 'rpm' => 'util-linux-ng', }), + 'lvs' => ({ + 'info' => '-L LVM data', + 'info-bsd' => '', + 'apt' => 'lvm2', + 'pacman' => 'lvm2', + 'rpm' => 'lvm2', + }), 'lsusb' => ({ 'info' => '-A usb audio; -J (optional); -N usb networking', 'info-bsd' => '-A; -J; -N. Alternate to usbdevs', @@ -2974,6 +2981,13 @@ sub item_data { 'pacman' => 'usbutils', 'rpm' => 'usbutils', }), + 'mdadm' => ({ + 'info' => '-Ra advanced mdraid data', + 'info-bsd' => '', + 'apt' => 'mdadm', + 'pacman' => 'mdadm', + 'rpm' => 'mdadm', + }), 'modinfo' => ({ 'info' => 'Ax; -Nx module version', 'info-bsd' => '', @@ -3204,6 +3218,7 @@ sub make_line { } } + #### ------------------------------------------------------------------- #### TOOLS #### -------------------------------------------------------------------