From 4ee7920d422c82b9dfa89259170283a9ed10ee44 Mon Sep 17 00:00:00 2001 From: Pavel Muhortov Date: Thu, 31 Aug 2023 10:28:27 +0300 Subject: [PATCH] updated dependencies --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 23259aa..3f89d1e 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ Route manager by CIDR lists * [`my_route`.py](https://git.hmp.today/pavel.muhortov/my_route#my_route-py) - ____ ## `my_route`.py @@ -16,6 +15,7 @@ ____ > > * privileged rights > * [Python 3](https://www.python.org/downloads/) (tested version 3.9.5 on [Debian GNU/Linux 11](http://ftp.debian.org/debian/dists/bullseye/)) +> * [git](https://git-scm.com/) (tested version 2.30.2 on [Debian GNU/Linux 11](http://ftp.debian.org/debian/dists/bullseye/)) | PARAMETERS | DESCRIPTION | DEFAULT| |-------------|-------------|--------| @@ -27,22 +27,22 @@ ____ |**[-u, --update]**|update cidr file db|`False`| |**[-f, --force]**|force download sources for update|`False`| -Example usage: +### Example usage my_route.py ```bash -# download +# download my_route.py sudo wget https://git.hmp.today/pavel.muhortov/my_route/raw/branch/master/my_route.py -O /usr/local/bin/my_route.py sudo chmod +x /usr/local/bin/my_route.py ``` ```bash -# download and edit config file +# download and edit my_route.conf sudo wget https://git.hmp.today/pavel.muhortov/my_route/raw/branch/master/my_route.conf -O /usr/local/bin/my_route.conf sudo nano /usr/local/bin/my_route.conf ``` ```bash -# create and edit cidr file or update by sources +# create and edit cidr files or update by sources sudo mkdir /usr/local/bin/my_route.db sudo tee /usr/local/bin/my_route.db/sources/custom.cidr > /dev/null <<'EOF' 34.117.59.81/32 # ipinfo.io @@ -51,5 +51,5 @@ EOF ```bash # sudo crontab -e -0 0 * * * /usr/bin/python3 /usr/local/bin/my_route.py --update +0 0 * * * /usr/bin/python3 /usr/local/bin/my_route.py --update --force ```