From: Yaguang Tang Date: Sun, 9 Jul 2017 14:52:46 +0000 (+0800) Subject: [RM-20560] Support deploy on Debian 9 stretch X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d89210227669ff344f79c7cdb03aaaa8e074bb22;p=ceph-deploy.git [RM-20560] Support deploy on Debian 9 stretch --- 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',