From 095171d70c4e3359c19f55a5d46e6f275e169e10 Mon Sep 17 00:00:00 2001 From: "Paul Buetow (lxpbuetow.webde.local)" Date: Mon, 7 Jul 2014 15:02:43 +0200 Subject: fix the a argument --- src/fapi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/fapi b/src/fapi index 0a5189a..765058b 100755 --- a/src/fapi +++ b/src/fapi @@ -429,7 +429,7 @@ class Fapi(FapiBase): else: fqdn_or_ip, ip, port = self.lookup(a.name) if a.a: - name = fqdn_or_ip + name = a.name else: name = fqdn_or_ip + '_' + port if a.sub == 'get': -- cgit v1.2.3 From 04afd66cfe089e727a5832f586ce78bfc0167e8a Mon Sep 17 00:00:00 2001 From: "Paul Buetow (lxpbuetow.webde.local)" Date: Mon, 7 Jul 2014 15:22:40 +0200 Subject: fix --- src/fapi | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src') diff --git a/src/fapi b/src/fapi index 765058b..1db236f 100755 --- a/src/fapi +++ b/src/fapi @@ -420,17 +420,17 @@ class Fapi(FapiBase): a = self._args if not a.name: return lambda: f5().get_list() - # Check for Pattern like /partition/foo-bar.example.com_443 - m = re.match('^(.*)_(\d+)$', a.name) - if m: - fqdn_or_ip = m.group(1) - port = m.group(2) - _, ip, _ = self.lookup(fqdn_or_ip) - else: - fqdn_or_ip, ip, port = self.lookup(a.name) if a.a: name = a.name else: + # Check for Pattern like /partition/foo-bar.example.com_443 + m = re.match('^(.*)_(\d+)$', a.name) + if m: + fqdn_or_ip = m.group(1) + port = m.group(2) + _, ip, _ = self.lookup(fqdn_or_ip) + else: + fqdn_or_ip, ip, port = self.lookup(a.name) name = fqdn_or_ip + '_' + port if a.sub == 'get': if a.sub2 == 'detail': -- cgit v1.2.3 From 2b7a4ca84f4101dc13c0a19d37abe66f637dbfe4 Mon Sep 17 00:00:00 2001 From: "Paul Buetow (lxpbuetow.webde.local)" Date: Mon, 7 Jul 2014 16:35:19 +0200 Subject: fix docu --- src/fapi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/fapi b/src/fapi index 1db236f..cbe7eac 100755 --- a/src/fapi +++ b/src/fapi @@ -122,7 +122,7 @@ class FapiBase(object): ' -f Common -b balancer.example.com selfip', ' -f Common -b balancer.example.com selfip NAME create NETMASK VLANNAME [TGROUP]', ' -f Common -b balancer.example.com selfip NAME delete', - ' -f Common -b balancer.example.com selfip NAME get detail|tgroup', + ' -f Common -b balancer.example.com selfip NAME get address|detail|tgroup', ' -f Common -b balancer.example.com selfip NAME set tgroup TGROUP', ' -f Common -b balancer.example.com vlan', ' -f Common -b balancer.example.com vlan NAME create tagged VLANID internal|external|...', -- cgit v1.2.3