Created attachment 555023 [details] engine log Description of problem: When host has Fedora 16 installed, in webadmin in general info, OS Version is "RHEL - 16 -1". Even in api <type>rhel</type> Version-Release number of selected component (if applicable): ovirt-engine-backend-3.0.0_0001-7.fc16.x86_64 How reproducible: Always Steps to Reproduce: 1. Install Fedora host 2. Check OS version of installed host Actual results: RHEL - 16 -1 Expected results: FEDORA 16 Additional info: During installation, host was recognized correctly: <BSTRAP component='OS' status='OK' type='FEDORA' message='Supported platform version'/>
What do you see in VDSM's getVdsCaps?
(In reply to comment #1) > What do you see in VDSM's getVdsCaps? You are right, changing component to vdsm: operatingSystem = {'release': '1', 'version': '16', 'name': 'RHEL'} vdsm-4.9.2-0.65.gitf945dc2.fc16.x86_64 [root@srh-03 vdsm]# cat /etc/redhat-release Fedora release 16 (Verne) [root@srh-03 vdsm]# ll /etc/ovirt-node-image-release ls: cannot access /etc/ovirt-node-image-release: No such file or directory From caps.py: 127 def getos(): 128 if os.path.exists('/etc/rhev-hypervisor-release'): 129 return OSName.RHEVH 130 elif os.path.exists('/etc/ovirt-node-image-release'): 131 return OSName.OVIRT 132 elif os.path.exists('/etc/redhat-release'): 133 return OSName.RHEL 134 else: 135 return OSName.UNKNOWN
need to make sure changing this in vdsm doesn't break engine...
http://gerrit.ovirt.org/#change,1048
(In reply to comment #3) > need to make sure changing this in vdsm doesn't break engine... tested, it doesn't