]> git.ipfire.org Git - people/ms/libloc.git/commitdiff
location-downloader: Merge man page into location-query
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 3 Jun 2020 17:10:35 +0000 (17:10 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 3 Jun 2020 17:10:35 +0000 (17:10 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Makefile.am
man/location-downloader.txt [deleted file]
man/location-query.txt

index c0b1300eb27ecd52c0ab1c541de17e9a18feae05..91f043629f477b4662364c8c3434d83338ba4278 100644 (file)
@@ -37,6 +37,9 @@ LIBLOC_CURRENT=0
 LIBLOC_REVISION=0
 LIBLOC_AGE=0
 
+pythondir = $(prefix)/lib/python3/dist-packages
+pyexecdir = $(prefix)/lib/python$(PYTHON_VERSION)/lib-dynload
+
 DISTCHECK_CONFIGURE_FLAGS = \
        --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
 
@@ -371,7 +374,6 @@ src_test_signature_LDADD = \
 # ------------------------------------------------------------------------------
 
 MANPAGES = \
-       man/location-downloader.8 \
        man/location-query.8
 
 MANPAGES_TXT  = $(patsubst %.8,%.txt,$(MANPAGES))
diff --git a/man/location-downloader.txt b/man/location-downloader.txt
deleted file mode 100644 (file)
index d733923..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-= location-downloader(8)
-
-== NAME
-location-downloader - Download a location database
-
-== SYNOPSIS
-[verse]
-`location-downloader update`
-
-== DESCRIPTION
-The `location-downloader` command updates the local version of the
-location database.
-
-== OPTIONS
-
---database FILE::
--d FILE::
-       The path of the database which is being updated.
-       +
-       If this option is omitted, the system's database will be opened.
-
---quiet::
-       Enable quiet mode
-
---debug::
-       Enable debugging mode
-
-== COMMANDS
-
-'update'::
-       This command will try to update the local database.
-       +
-       It will terminate with a return code of zero if the database has been
-       successfully updated. 1 on error, 2 on invalid call and 3 if the
-       database was already the latest version.
-
-'verify'::
-       Verifies the downloaded database.
-
-'--help'::
-       Shows a short help text on using this program.
-
-'--version'::
-       Shows the program's version and exists.
-
-== EXIT CODES
-The 'location-downloader' command will normally exit with code zero.
-If there has been a problem and the requested action could not be performed,
-the exit code is unequal to zero.
-
-== HOW IT WORKS
-The downloader checks a DNS record for the latest version of the database.
-It will then try to download a file with that version from a mirror server.
-If the downloaded file is outdated, the next mirror will be tried until we
-have found a file that is recent enough.
-
-== BUGS
-Please report all bugs to the bugtracker at https://bugzilla.ipfire.org/.
-
-== AUTHORS
-Michael Tremer
index b91e8e1468aa30bc912220bb752d19026c3d16d8..acb43cdb6fdb362f405ec65aca05bcd9ef1e448b 100644 (file)
@@ -8,6 +8,8 @@ location-query - Query the location database
 `location-query lookup ADDRESS [ADDRESS...]`
 `location-query get-as ASN [ASN...]`
 `location-query search-as STRING`
+`location-query update`
+`location-query verify`
 `location-query list-networks-by-as ASN`
 `location-query list-networks-by-cc COUNTRY_CODE`
 `location-query list-networks-by-flags [--anonymous-proxy|--satellite-provider|--anycast]`
@@ -47,6 +49,16 @@ or countries.
        +
        The search will be performed case-insensitively.
 
+'update'::
+       This command will try to update the local database.
+       +
+       It will terminate with a return code of zero if the database has been
+       successfully updated. 1 on error, 2 on invalid call and 3 if the
+       database was already the latest version.
+
+'verify'::
+       Verifies the downloaded database.
+
 'list-networks-by-as [--family=[ipv6|ipv4]] [--output-format FORMAT] ASN'::
        Lists all networks which belong to this Autonomous System.
        +
@@ -85,6 +97,12 @@ The 'location-query' command will normally exit with code zero.
 If there has been a problem and the requested action could not be performed,
 the exit code is unequal to zero.
 
+== HOW IT WORKS
+The downloader checks a DNS record for the latest version of the database.
+It will then try to download a file with that version from a mirror server.
+If the downloaded file is outdated, the next mirror will be tried until we
+have found a file that is recent enough.
+
 == BUGS
 Please report all bugs to the bugtracker at https://bugzilla.ipfire.org/.