mirror of
https://github.com/smxi/inxi.git
synced 2024-11-16 08:11:39 +00:00
forgot to update recommends with lvs and mdadm
This commit is contained in:
parent
421e637465
commit
359c92f14f
21
inxi
21
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
|
||||
#### -------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue