diff options
| -rw-r--r-- | .version | 2 | ||||
| -rw-r--r-- | README.pod | 12 | ||||
| -rw-r--r-- | debian/changelog | 7 | ||||
| -rw-r--r-- | debian/files | 2 | ||||
| -rw-r--r-- | docs/fapi.1 | 15 | ||||
| -rw-r--r-- | docs/fapi.txt | 13 |
6 files changed, 36 insertions, 15 deletions
@@ -1 +1 @@ -0.0.6 +0.0.7 @@ -59,13 +59,13 @@ L<https://devcentral.f5.com/wiki/icontrol.apireference.ashx> Update your sources list: curl http://deb.buetow.org/apt/pubkey.gpg | sudo apt-key add - - echo 'deb http://deb.buetow.org/apt wheezy main' > \ - /etc/apt/sourcees.list.d/buetoworg.list - aptitude update + echo deb http://deb.buetow.org/apt wheezy main | + sudo tee /etc/apt/sourcees.list.d/buetoworg.list + sudo aptitude update And run - aptitude install fapi + sudo aptitude install fapi cp /usr/share/fapi/fapi.conf.sample ~/.fapi.conf vim ~/.fapi.conf @@ -168,6 +168,10 @@ Examples: # vserver name is foo, its virtual address 1.2.3.4 and port is 80 f vserver foo:1.2.3.4:80 create + # vserver name is 1.2.3.5, its virtual address 1.2.3.4 and port is 80 + f 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 b056f1a..ee29eca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +fapi (0.0.7) stable; urgency=low + + * Add the functionality to specify explicitly IP addresses even if the + FQDN does not resolve to it. + + -- Paul Buetow <paul@buetow.org> Tue, 22 Apr 2014 20:39:28 +0200 + fapi (0.0.6) stable; urgency=low * Introduce a bunch of new options. diff --git a/debian/files b/debian/files index 566b33e..4690dbb 100644 --- a/debian/files +++ b/debian/files @@ -1 +1 @@ -fapi_0.0.6_all.deb utils optional +fapi_0.0.7_all.deb utils optional diff --git a/docs/fapi.1 b/docs/fapi.1 index 63436ab..53dc4dc 100644 --- a/docs/fapi.1 +++ b/docs/fapi.1 @@ -124,7 +124,7 @@ .\" ======================================================================== .\" .IX Title "FAPI 1" -.TH FAPI 1 "2014-04-17" "fapi 0.0.6" "User Commands" +.TH FAPI 1 "2014-04-22" "fapi 0.0.7" "User Commands" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -191,15 +191,15 @@ Update your sources list: .PP .Vb 4 \& curl http://deb.buetow.org/apt/pubkey.gpg | sudo apt\-key add \- -\& echo \*(Aqdeb http://deb.buetow.org/apt wheezy main\*(Aq > \e -\& /etc/apt/sourcees.list.d/buetoworg.list -\& aptitude update +\& echo deb http://deb.buetow.org/apt wheezy main | +\& sudo tee /etc/apt/sourcees.list.d/buetoworg.list +\& sudo aptitude update .Ve .PP And run .PP .Vb 3 -\& aptitude install fapi +\& sudo aptitude install fapi \& cp /usr/share/fapi/fapi.conf.sample ~/.fapi.conf \& vim ~/.fapi.conf .Ve @@ -310,7 +310,12 @@ Examples: \& \& # vserver name is foo, its virtual address 1.2.3.4 and port is 80 \& f vserver foo:1.2.3.4:80 create +\& +\& # vserver name is 1.2.3.5, its virtual address 1.2.3.4 and port is 80 +\& f vserver 1.2.3.5:1.2.3.4:80 create .Ve +.PP +Similar may apply to other object types such as nodes and vips. .SH "AUTHOR" .IX Header "AUTHOR" Paul C. Buetow \- <paul@buetow.org> diff --git a/docs/fapi.txt b/docs/fapi.txt index bcbf496..ebc7dc1 100644 --- a/docs/fapi.txt +++ b/docs/fapi.txt @@ -51,13 +51,13 @@ QUICK START Update your sources list: curl http://deb.buetow.org/apt/pubkey.gpg | sudo apt-key add - - echo 'deb http://deb.buetow.org/apt wheezy main' > \ - /etc/apt/sourcees.list.d/buetoworg.list - aptitude update + echo deb http://deb.buetow.org/apt wheezy main | + sudo tee /etc/apt/sourcees.list.d/buetoworg.list + sudo aptitude update And run - aptitude install fapi + sudo aptitude install fapi cp /usr/share/fapi/fapi.conf.sample ~/.fapi.conf vim ~/.fapi.conf @@ -152,6 +152,11 @@ EXAMPLES # vserver name is foo, its virtual address 1.2.3.4 and port is 80 f vserver foo:1.2.3.4:80 create + # vserver name is 1.2.3.5, its virtual address 1.2.3.4 and port is 80 + f vserver 1.2.3.5:1.2.3.4:80 create + + Similar may apply to other object types such as nodes and vips. + AUTHOR Paul C. Buetow - <paul@buetow.org> |
