From 7b1deef915fca2353d8f62bf117b13df1edf3d25 Mon Sep 17 00:00:00 2001 From: Frank Date: Tue, 1 Feb 2011 12:09:22 -0800 Subject: [PATCH] Bug 8221 - cloud-setup-databases fails when using RHEL 5.6 status 8221: resloved fixed --- python/lib/cloud_utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/lib/cloud_utils.py b/python/lib/cloud_utils.py index bcf31e23b3d..5d1058c539c 100644 --- a/python/lib/cloud_utils.py +++ b/python/lib/cloud_utils.py @@ -49,6 +49,8 @@ elif os.path.exists("/etc/redhat-release"): distro = RHEL6 elif version.find("CentOS release") != -1: distro = CentOS + else: + distro = CentOS elif os.path.exists("/etc/legal") and "Ubuntu" in file("/etc/legal").read(-1): distro = Ubuntu else: distro = Unknown logFileName=None