add patch for ceph-detect-init

This commit is contained in:
Fabian Grünbichler 2017-03-21 07:50:52 +01:00
parent adde06717f
commit b19cc69238
4 changed files with 33 additions and 4 deletions

View File

@ -1,7 +1,7 @@
From eaa617f8559ac5b373e74231471ce56c41f2ccd3 Mon Sep 17 00:00:00 2001
From 784c9a88188a2ac328382f4aed798b7dedeab436 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= <f.gruenbichler@proxmox.com>
Date: Mon, 20 Mar 2017 09:12:50 +0100
Subject: [PATCH 1/2] update changelog
Subject: [PATCH 1/3] update changelog
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

View File

@ -1,7 +1,7 @@
From 504f6eeca120650da018d7584737298f55dcbc9b Mon Sep 17 00:00:00 2001
From c99775b461be35901e508e28c53613f37d3f6e99 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= <f.gruenbichler@proxmox.com>
Date: Mon, 20 Mar 2017 09:16:06 +0100
Subject: [PATCH 2/2] build with system boost
Subject: [PATCH 2/3] build with system boost
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

View File

@ -0,0 +1,28 @@
From 196f4ea77ed186fdf37a3aea97a22296f8f8e42d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= <f.gruenbichler@proxmox.com>
Date: Tue, 21 Mar 2017 07:47:08 +0100
Subject: [PATCH 3/3] ceph-detect-init: support Debian Stretch
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
---
src/ceph-detect-init/ceph_detect_init/__init__.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/ceph-detect-init/ceph_detect_init/__init__.py b/src/ceph-detect-init/ceph_detect_init/__init__.py
index b431616..d03d8db 100644
--- a/src/ceph-detect-init/ceph_detect_init/__init__.py
+++ b/src/ceph-detect-init/ceph_detect_init/__init__.py
@@ -113,6 +113,7 @@ def platform_information():
# this could be an empty string in Debian
if not codename and 'debian' in distro.lower():
debian_codenames = {
+ '9': 'stretch',
'8': 'jessie',
'7': 'wheezy',
'6': 'squeeze',
--
2.1.4

View File

@ -1,2 +1,3 @@
0001-update-changelog.patch
0002-build-with-system-boost.patch
0003-ceph-detect-init-support-Debian-Stretch.patch