summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul C. Buetow (mars.fritz.box) <paul@buetow.org>2014-05-30 20:04:02 +0200
committerPaul C. Buetow (mars.fritz.box) <paul@buetow.org>2014-05-30 20:04:02 +0200
commit25da268a3162c085eac37663fa09346c98a713d9 (patch)
tree5c1e716c2e81d459516477ddcfdd1a5a3292cc33
parentdd38be3e329a57a19471f3378b4196ad7ba1f663 (diff)
New release0.8.2
-rw-r--r--.version2
-rw-r--r--debian/changelog6
-rw-r--r--debian/files2
-rw-r--r--docs/fapi.12
-rwxr-xr-xsrc/fapi15
5 files changed, 9 insertions, 18 deletions
diff --git a/.version b/.version
index a3df0a6..6f4eebd 100644
--- a/.version
+++ b/.version
@@ -1 +1 @@
-0.8.0
+0.8.1
diff --git a/debian/changelog b/debian/changelog
index eae1390..c2b6c25 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+fapi (0.8.1) stable; urgency=low
+
+ * Hotfix release, could not manage nodes
+
+ -- Paul Buetow <paul@buetow.org> Fri, 30 May 2014 20:03:31 +0200
+
fapi (0.8.0) stable; urgency=low
* Add option -a
diff --git a/debian/files b/debian/files
index 53467a5..4933b7c 100644
--- a/debian/files
+++ b/debian/files
@@ -1 +1 @@
-fapi_0.8.0_all.deb utils optional
+fapi_0.8.1_all.deb utils optional
diff --git a/docs/fapi.1 b/docs/fapi.1
index 7ed76f4..4bcc3c3 100644
--- a/docs/fapi.1
+++ b/docs/fapi.1
@@ -124,7 +124,7 @@
.\" ========================================================================
.\"
.IX Title "FAPI 1"
-.TH FAPI 1 "2014-05-28" "fapi 0.8.0" "User Commands"
+.TH FAPI 1 "2014-05-27" "fapi 0.8.1" "User Commands"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
diff --git a/src/fapi b/src/fapi
index 1122ba4..dee14d6 100755
--- a/src/fapi
+++ b/src/fapi
@@ -271,21 +271,6 @@ class Fapi(FapiBase):
return (name, ip, port)
- def li(self, name):
- ''' Checks if name is a list and returns a list if not. '''
- return name if isinstance(name, list) else [name]
-
-
- def pa(self, length, params):
- ''' Checks if name is a list and returns a list of params if so '''
- paramlist = []
- if length > 1:
- for _ in xrange(length): paramlist.append(params)
- else:
- paramlist.append(params)
- return paramlist
-
-
def __do_node(self, f5):
''' Do stuff concerning nodes '''
a = self._args