mirror of
https://github.com/smxi/inxi.git
synced 2024-11-17 00:31:19 +00:00
final bug fixes, if google svn ever starts working again
This commit is contained in:
parent
4e31e4502c
commit
5654a8bffd
23
inxi
23
inxi
|
@ -5969,16 +5969,19 @@ print_machine_data()
|
|||
if [[ ${#A_MACHINE_DATA[@]} -gt 0 ]];then
|
||||
# note: in some case a mobo/version will match a product name/version, do not print those
|
||||
# but for laptops, or even falsely id'ed desktops with batteries, let's print it all if it matches
|
||||
if [[ $B_LAPTOP != 'true' ]];then
|
||||
if [[ -z ${A_MACHINE_DATA[0]} ]];then
|
||||
b_skip_system='true'
|
||||
# ibm / ibm can be true; dell / quantum is false, so in other words, only do this
|
||||
# in case where the vendor is the same and the version is the same and not null,
|
||||
# otherwise the version information is going to be different in all cases I think
|
||||
elif [[ ${A_MACHINE_DATA[0]} == ${A_MACHINE_DATA[5]} ]];then
|
||||
if [[ -n ${A_MACHINE_DATA[2]} && ${A_MACHINE_DATA[2]} == ${A_MACHINE_DATA[7]} ]] || \
|
||||
[[ -z ${A_MACHINE_DATA[2]} && ${A_MACHINE_DATA[1]} == ${A_MACHINE_DATA[6]} ]];then
|
||||
b_skip_system='true'
|
||||
# there can be false id laptops if battery appears so need to make sure system is filled
|
||||
if [[ -z ${A_MACHINE_DATA[0]} ]];then
|
||||
b_skip_system='true'
|
||||
else
|
||||
if [[ $B_LAPTOP != 'true' ]];then
|
||||
# ibm / ibm can be true; dell / quantum is false, so in other words, only do this
|
||||
# in case where the vendor is the same and the version is the same and not null,
|
||||
# otherwise the version information is going to be different in all cases I think
|
||||
if [[ -n ${A_MACHINE_DATA[0]} && ${A_MACHINE_DATA[0]} == ${A_MACHINE_DATA[5]} ]];then
|
||||
if [[ -n ${A_MACHINE_DATA[2]} && ${A_MACHINE_DATA[2]} == ${A_MACHINE_DATA[7]} ]] || \
|
||||
[[ -z ${A_MACHINE_DATA[2]} && ${A_MACHINE_DATA[1]} == ${A_MACHINE_DATA[6]} ]];then
|
||||
b_skip_system='true'
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue