From 85a8baae38957e1e26b3b58054854fec6998a7ec Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 14 Mar 2013 16:27:01 -0700 Subject: [PATCH] install: do debs for 'Debian' Signed-off-by: Sage Weil --- teuthology/task/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/install.py b/teuthology/task/install.py index 117c76d38c793..9ecc9946c02a1 100644 --- a/teuthology/task/install.py +++ b/teuthology/task/install.py @@ -23,7 +23,7 @@ def _get_system_type(remote): ) system_value = r.stdout.getvalue().strip() log.debug("System to be installed: %s" % system_value) - if system_value in ['Ubuntu',]: + if system_value in ['Ubuntu','Debian',]: return "deb" if system_value in ['CentOS',]: return "rpm" -- 2.39.5