Commit 6a8062ba by Brian Coca

accidentally 'fixes' ubuntu distribution parsing, this order should not matter,…

accidentally 'fixes' ubuntu distribution parsing, this order should not matter, need followup to figure out why this is the case
parent 4205d74b
......@@ -99,8 +99,8 @@ class Facts(object):
('/etc/os-release', 'SuSE'),
('/etc/gentoo-release', 'Gentoo'),
('/etc/os-release', 'Debian'),
('/etc/lsb-release', 'Mandriva'),
('/etc/os-release', 'NA') )
('/etc/os-release', 'NA'),
('/etc/lsb-release', 'Mandriva'))
SELINUX_MODE_DICT = { 1: 'enforcing', 0: 'permissive', -1: 'disabled' }
# A list of dicts. If there is a platform with more than one
......
......@@ -99,8 +99,8 @@ class Facts(object):
('/etc/os-release', 'SuSE'),
('/etc/gentoo-release', 'Gentoo'),
('/etc/os-release', 'Debian'),
('/etc/lsb-release', 'Mandriva'),
('/etc/os-release', 'NA') )
('/etc/os-release', 'NA'),
('/etc/lsb-release', 'Mandriva'))
SELINUX_MODE_DICT = { 1: 'enforcing', 0: 'permissive', -1: 'disabled' }
# A list of dicts. If there is a platform with more than one
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment