diff options
| author | Paul C. Buetow (mars.fritz.box) <paul@buetow.org> | 2014-05-27 20:18:33 +0200 |
|---|---|---|
| committer | Paul C. Buetow (mars.fritz.box) <paul@buetow.org> | 2014-05-27 20:18:33 +0200 |
| commit | 92950f1ba2632cf2a591d537bfeedadf450a013b (patch) | |
| tree | ab8d9280d34729322221fd834de2e90e11f9c015 | |
| parent | 52a243410c47a801a9cee7987c22798933401503 (diff) | |
New release
| -rw-r--r-- | .version | 2 | ||||
| -rw-r--r-- | README.pod | 11 | ||||
| -rw-r--r-- | debian/changelog | 11 | ||||
| -rw-r--r-- | debian/files | 2 | ||||
| -rw-r--r-- | docs/fapi.1 | 14 | ||||
| -rw-r--r-- | docs/fapi.txt | 10 | ||||
| -rw-r--r-- | docs/synopsis.txt | 4 |
7 files changed, 46 insertions, 8 deletions
@@ -1 +1 @@ -0.7.3 +0.8.0 @@ -174,9 +174,17 @@ by a port: Examples: - # Auto resolving of the virtual address (IP) and auto port 80 + # Auto resolving of the virtual address (IP) and auto port 80. The vserver + # name will have added an automatic _PORT suffix to it's name. fapi vserver fqdn.example.com create + # Or just ignore the auto port, will not add any _PORT suffix to the + # vserver name. + fapi -a .... + + # Example: + fapi -a vserver fqdn.example.com_ssl create + # Auto resolving of the virtual address (IP) fapi vserver fqdn.example.com:443 create @@ -199,6 +207,7 @@ Examples: # vserver name is 1.2.3.5, its virtual address 1.2.3.4 and port is 80 fapi vserver 1.2.3.5:1.2.3.4:80 create + Similar may apply to other object types such as nodes and vips. =head1 AUTHOR diff --git a/debian/changelog b/debian/changelog index 2d47e4f..eae1390 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +fapi (0.8.0) stable; urgency=low + + * Add option -a + * Add possibility to manage SSL Client Profiles + * Add possibility to manage VirtualServer rules + * Add gitignore file + * Small bugfixes + * Enhancements in the documentation/manual page + + -- Paul Buetow <paul@buetow.org> Tue, 27 May 2014 20:17:19 +0200 + fapi (0.7.3) stable; urgency=low * Fixes documentation diff --git a/debian/files b/debian/files index 0d3edca..53467a5 100644 --- a/debian/files +++ b/debian/files @@ -1 +1 @@ -fapi_0.7.3_all.deb utils optional +fapi_0.8.0_all.deb utils optional diff --git a/docs/fapi.1 b/docs/fapi.1 index 98bd100..3f3c022 100644 --- a/docs/fapi.1 +++ b/docs/fapi.1 @@ -124,7 +124,7 @@ .\" ======================================================================== .\" .IX Title "FAPI 1" -.TH FAPI 1 "2014-05-26" "fapi 0.7.3" "User Commands" +.TH FAPI 1 "2014-05-27" "fapi 0.8.0" "User Commands" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -320,10 +320,18 @@ by a port: .PP Examples: .PP -.Vb 2 -\& # Auto resolving of the virtual address (IP) and auto port 80 +.Vb 3 +\& # Auto resolving of the virtual address (IP) and auto port 80. The vserver +\& # name will have added an automatic _PORT suffix to it\*(Aqs name. \& fapi vserver fqdn.example.com create \& +\& # Or just ignore the auto port, will not add any _PORT suffix to the +\& # vserver name. +\& fapi \-a .... +\& +\& # Example: +\& fapi \-a vserver fqdn.example.com_ssl create +\& \& # Auto resolving of the virtual address (IP) \& fapi vserver fqdn.example.com:443 create \& diff --git a/docs/fapi.txt b/docs/fapi.txt index 8dea5c9..85e6028 100644 --- a/docs/fapi.txt +++ b/docs/fapi.txt @@ -159,9 +159,17 @@ EXAMPLES Examples: - # Auto resolving of the virtual address (IP) and auto port 80 + # Auto resolving of the virtual address (IP) and auto port 80. The vserver + # name will have added an automatic _PORT suffix to it's name. fapi vserver fqdn.example.com create + # Or just ignore the auto port, will not add any _PORT suffix to the + # vserver name. + fapi -a .... + + # Example: + fapi -a vserver fqdn.example.com_ssl create + # Auto resolving of the virtual address (IP) fapi vserver fqdn.example.com:443 create diff --git a/docs/synopsis.txt b/docs/synopsis.txt index 807ece6..ce46d0c 100644 --- a/docs/synopsis.txt +++ b/docs/synopsis.txt @@ -1,4 +1,5 @@ -usage: fapi [-b B] [-d] [-e E] [-f F] [-h] [-i] [-l] [-n] [-v] [-V] [-C C] +usage: fapi [-a] [-b B] [-d] [-e E] [-f F] [-h] [-i] [-l] [-n] [-v] [-V] + [-C C] [what] [name] [sub] [sub2] [sub3] [sub4] [sub5] positional arguments: @@ -11,6 +12,7 @@ positional arguments: sub5 Fith sub command optional arguments: + -a Disables auto port in vserver name -b B Forces to use the secified loadbalancer (overwrites -e) -d Disable colorful output -e E Env to use, e.g. dev,qa,live |
