From 1579e2caad48b33f5786d461b5cf036c76e938eb Mon Sep 17 00:00:00 2001 From: Yaguang Tang Date: Sun, 9 Jul 2017 22:52:46 +0800 Subject: [PATCH] [RM-20560] Support deploy on Debian 9 stretch --- ceph_deploy/hosts/remotes.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ceph_deploy/hosts/remotes.py b/ceph_deploy/hosts/remotes.py index 2f3e4c8..e3aef4a 100644 --- a/ceph_deploy/hosts/remotes.py +++ b/ceph_deploy/hosts/remotes.py @@ -16,6 +16,8 @@ def platform_information(_linux_distribution=None): distro, release, codename = linux_distribution() if not codename and 'debian' in distro.lower(): # this could be an empty string in Debian debian_codenames = { + '10': 'buster', + '9': 'stretch', '8': 'jessie', '7': 'wheezy', '6': 'squeeze', -- 2.47.3