You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's possible to purchase the non-HL chassis and provide our own motherboards, etc. However, this leads to a variety of illegal states:
/opt/45drives/tools/server_identifier: ipmitool fru command failed. IPMI is not present on this system. Attempting to pull info from DMI tables
Traceback (most recent call last):
File "/opt/45drives/tools/server_identifier", line 992, in <module>
main()
File "/opt/45drives/tools/server_identifier", line 968, in main
server["Alias Style"] = g_product_lut[server["Model"]][g_product_lut_idx["ALIAS_STYLE"]]
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
KeyError: 'HomeLab-Default string'
/opt/45drives/tools/dmap: !! ERROR !! Invalid Chassis Size and Alias Style combination set in /etc/45drives/server_info/server_info.json
Valid Chassis Size Options for HOMELAB are: dict_keys(['HL15', 'HL4', 'HL8'])
You can manually edit this file by setting "Edit Mode": true
in /etc/45drives/server_info/server_info.json along with any other parameters
So I had to manually edit /etc/45drives/server_info/server_info.json to set "Alias Style" to "STORINATOR", which would have been relatively easily pre-determined just by the size.
Ideal outcome: Not having to manually edit the script or server_info.json after running server_identifier when using non-standard hardware.
The text was updated successfully, but these errors were encountered:
It's possible to purchase the non-HL chassis and provide our own motherboards, etc. However, this leads to a variety of illegal states:
caused by https://github.com/45Drives/tools/blame/master/tools/server_identifier#L709
dmi yields "Default string" for a lot of values, and it assumes
HomeLab
because I do not have an IPMI controller.Then, if I manually add an entry for this key:
dmap
will fail, because:So I had to manually edit /etc/45drives/server_info/server_info.json to set
"Alias Style"
to"STORINATOR"
, which would have been relatively easily pre-determined just by the size.Ideal outcome: Not having to manually edit the script or server_info.json after running server_identifier when using non-standard hardware.
The text was updated successfully, but these errors were encountered: