* Improve obtaining status on Cisco UCS devices * Fix issues with symlink installations * Fix documentation for fence_scsi and fence_mpath OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/fence-agents?expand=0&rev=54
31 lines
1.0 KiB
Diff
31 lines
1.0 KiB
Diff
From f892771543d67d4b7b354349b390b16418d6c181 Mon Sep 17 00:00:00 2001
|
|
From: Vincent Untz <vuntz@suse.com>
|
|
Date: Wed, 29 Jun 2016 09:51:37 +0200
|
|
Subject: [PATCH 8/9] fence_compute: Fix fix_plug_name when looking if plug has
|
|
domain
|
|
|
|
We shouldn't check if the plug name contains the domain, but if it ends
|
|
with the domain.
|
|
---
|
|
fence/agents/compute/fence_compute.py | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/fence/agents/compute/fence_compute.py b/fence/agents/compute/fence_compute.py
|
|
index 1cb7df4..dd04e54 100644
|
|
--- a/fence/agents/compute/fence_compute.py
|
|
+++ b/fence/agents/compute/fence_compute.py
|
|
@@ -283,8 +283,8 @@ def fix_plug_name(options):
|
|
# Ensure any domain is stripped off since nova isn't using FQDN
|
|
options["--plug"] = short_plug
|
|
|
|
- elif options["--plug"].find(options["--domain"]):
|
|
- # Plug already contains the domain, don't re-add
|
|
+ elif options["--plug"].endswith(options["--domain"]):
|
|
+ # Plug already uses the domain, don't re-add
|
|
return
|
|
|
|
else:
|
|
--
|
|
2.9.0
|
|
|