app-emulation/ganeti: remove unused patches
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
Tue, 5 Jul 2016 19:30:43 +0000 (21:30 +0200)
committerPatrice Clement <monsieurp@gentoo.org>
Thu, 11 Aug 2016 08:07:58 +0000 (10:07 +0200)
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
app-emulation/ganeti/files/ganeti-2.12-cfgupgrade-state.patch [deleted file]
app-emulation/ganeti/files/ganeti-2.12-daemon-util.patch [deleted file]

diff --git a/app-emulation/ganeti/files/ganeti-2.12-cfgupgrade-state.patch b/app-emulation/ganeti/files/ganeti-2.12-cfgupgrade-state.patch
deleted file mode 100644 (file)
index 42841f9..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/tools/cfgupgrade b/tools/cfgupgrade
-index c8dfdec..0f886b2 100755
---- a/tools/cfgupgrade
-+++ b/tools/cfgupgrade
-@@ -169,6 +169,10 @@ def UpgradeCluster(config_data):
-     cluster.get("zeroing_image", "")
-   cluster["compression_tools"] = \
-     cluster.get("compression_tools", constants.IEC_DEFAULT_TOOLS)
-+  cluster["hv_state_static"] = \
-+    cluster.get("hv_state_static", {})
-+  cluster["disk_state_static"] = \
-+    cluster.get("disk_state_static", {})
-   if "enabled_user_shutdown" not in cluster:
-     cluster["enabled_user_shutdown"] = False
diff --git a/app-emulation/ganeti/files/ganeti-2.12-daemon-util.patch b/app-emulation/ganeti/files/ganeti-2.12-daemon-util.patch
deleted file mode 100644 (file)
index 79bda3c..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-diff --git a/daemons/daemon-util.in b/daemons/daemon-util.in
-index 6a47253..5d7c4cf 100644
---- a/daemons/daemon-util.in
-+++ b/daemons/daemon-util.in
-@@ -31,18 +31,24 @@ set -e
- @SHELL_ENV_INIT@
--readonly defaults_file="$SYSCONFDIR/default/ganeti"
-+readonly defaults_file="$SYSCONFDIR/conf.d/ganeti"
- # This is a list of all daemons and the order in which they're started. The
- # order is important as there are dependencies between them. On shutdown,
- # they're stopped in reverse order.
--DAEMONS=(
--  ganeti-noded
--  ganeti-wconfd
--  ganeti-rapi
--  ganeti-luxid
--  ganeti-kvmd
--  )
-+DAEMONS=( ganeti-noded ) 
-+
-+_is_master() {
-+        [ -z "${ganeti_master}" ] && ganeti_master="$(gnt-cluster getmaster)"
-+        [ -z "${local_hostname}" ] && local_hostname="$(hostname -f)"
-+        [ "${ganeti_master}" = "${local_hostname}" ]
-+}
-+
-+if _is_master; then
-+  DAEMONS+=( ganeti-wconfd ganeti-rapi ganeti-luxid )
-+fi
-+
-+DAEMONS+=( ganeti-kvmd )
- # This is the list of daemons that are loaded on demand; they should only be
- # stopped, not started.