SG-Azure: Linux servers are populated into cmdb_ci_server class instead of cmdb_ci_linux_server class.Issue Description Issue with the Linux CI server classification. SG-Azure VMs and SG-Azure Data config are not creating Linux CI in Linux class (cmdb_ci_linux_server), they are getting created in cmdb_ci_server class. Steps to Reproduce Linux CIs are not getting created in cmdb_ci_linux_server due to case mismatch while comparing the OS Type. The sys_choice table is referred to while the OS Type is cleansed and it is returning "linux" whereas the script was expecting "Linux". This issue is applicable only when sys_choice table returns value as "linux". https://InstanceName.service-now.com/sys_choice_list.do?sysparm_query=nameSTARTSWITHcmdb_ci_computer%5EelementSTARTSWITHos%5Evalue%3Dlinux&sysparm_view= Workaround -> Go to sys_rte_eb_entity_mapping.list -> Filter by Application as "Service Graph Connector for Microsoft Azure" and Target Entity contains "Linux Server". (check below reference) -> Open those records and edit the conditional script as mentioned below and save it. -> Change the 2nd line of script from input.temp.os_type_cleansed === 'Linux' to input.temp.os_type_cleansed.toLowerCase() === 'linux' Related Problem: PRB1656771