summaryrefslogtreecommitdiffstats
path: root/patches/fuel-agent/0001-TEMP-bootstrap-etc-rc.local-force-mco-start.patch
diff options
context:
space:
mode:
authorAlexandru Avadanii <Alexandru.Avadanii@enea.com>2017-06-28 20:48:38 +0200
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>2017-06-28 20:51:14 +0200
commita0805a01542505301918cacb5db6216814c40023 (patch)
treedcc125fa94cbacdac6f30bea2d6ebc59ad335598 /patches/fuel-agent/0001-TEMP-bootstrap-etc-rc.local-force-mco-start.patch
parentbe00c803bcefb56ad9f690ae1509d3dcae7e9d9b (diff)
MCP: Remove all Fuel patches and plugins
Chances are none of the old patches / plugins can be reused as-is, so remove all of them and prepare for the switch to MCP. Change-Id: I999927a43b438d9bda9ff118731e2af4b1fa8caa Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Diffstat (limited to 'patches/fuel-agent/0001-TEMP-bootstrap-etc-rc.local-force-mco-start.patch')
-rw-r--r--patches/fuel-agent/0001-TEMP-bootstrap-etc-rc.local-force-mco-start.patch47
1 files changed, 0 insertions, 47 deletions
diff --git a/patches/fuel-agent/0001-TEMP-bootstrap-etc-rc.local-force-mco-start.patch b/patches/fuel-agent/0001-TEMP-bootstrap-etc-rc.local-force-mco-start.patch
deleted file mode 100644
index ba4c382c..00000000
--- a/patches/fuel-agent/0001-TEMP-bootstrap-etc-rc.local-force-mco-start.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-: Copyright (c) 2017 Enea AB and others.
-:
-: All rights reserved. This program and the accompanying materials
-: are made available under the terms of the Apache License, Version 2.0
-: which accompanies this distribution, and is available at
-: http://www.apache.org/licenses/LICENSE-2.0
-::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-From: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
-Date: Wed, 22 Feb 2017 21:43:48 +0100
-Subject: [PATCH] TEMP: bootstrap: /etc/rc.local: force mco start
-
-Temporary workaround for upstream bug:
-"Mcollective fails to start in bootstrap of baremetal servers" [1]
-
-This should be reverted as soon as upstream merges a fix.
-
-[1] https://bugs.launchpad.net/fuel/newton/+bug/1656150
-
-Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
----
- contrib/fuel_bootstrap/files/xenial/etc/rc.local | 15 +++++++++++++++
- 1 file changed, 15 insertions(+)
-
-diff --git a/contrib/fuel_bootstrap/files/xenial/etc/rc.local b/contrib/fuel_bootstrap/files/xenial/etc/rc.local
-index 9712ba7..12262e3 100755
---- a/contrib/fuel_bootstrap/files/xenial/etc/rc.local
-+++ b/contrib/fuel_bootstrap/files/xenial/etc/rc.local
-@@ -2,3 +2,18 @@
-
- # Perform fuel bootstrap configuration
- /usr/bin/fix-configs-on-startup || /bin/true
-+
-+# FIXME: Temporary workaround for:
-+# https://bugs.launchpad.net/fuel/newton/+bug/1656150
-+set +e
-+until false
-+do
-+ sleep 60
-+ /etc/init.d/mcollective status > /dev/null 2>&1
-+ if [ $? -eq 0 ]
-+ then
-+ break
-+ else
-+ /usr/bin/fix-configs-on-startup || /bin/true
-+ fi
-+done