This website works better with JavaScript.
Home
Help
Sign In
LILiK
/
openwrt-packages-dist
Watch
5
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27337
Commits
1
Branch
46 MiB
Branch:
lilik-openwrt-22.03
lilik-openwrt-22.03
Branches
Tags
${ item.name }
Create branch
${ searchTerm }
from 'lilik-openwrt-22.03'
${ noResults }
openwrt-packages-dist
/
net
/
geoipupdate
/
files
/
geoipupdate.init
9 lines
97 B
Raw
Permalink
Normal View
History
geoipupdate: initial commit Add MaxMind's geoipupdate utility. mmdb files are downloaded to /var/GeoIP by default. The user should update /etc/GeoIP.conf with their API key and DB choice, currently set to country only. So as not to exceed MaxMind's download limitations, the user should manually run the utility or set up a cron job. Signed-off-by: Matthew Hagan <mnhagan88@gmail.com>
3 years ago
#!/bin/sh /etc/rc.common
START=99
start() {
[ -d /var/GeoIP ] || {
mkdir -p /var/GeoIP
}
}