diff options
| author | Carlo Landmeter <clandmeter@gmail.com> | 2017-12-05 11:09:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-05 11:09:27 +0100 |
| commit | b8b9a596aef96cfcf06ad38e59262cea5c1944f2 (patch) | |
| tree | 01a17358e8dfdbe471e3881bc267d309996c6c6e | |
| parent | 23bbdc1e629d4bff0bb53faf67fba8f2eb6b385c (diff) | |
| download | alpine-mirror-status-b8b9a596aef96cfcf06ad38e59262cea5c1944f2.tar.bz2 alpine-mirror-status-b8b9a596aef96cfcf06ad38e59262cea5c1944f2.tar.xz | |
update readme.md
| -rw-r--r-- | README.md | 43 |
1 files changed, 42 insertions, 1 deletions
@@ -1,2 +1,43 @@ # alpine-mirror-status -Scripts to generate Alpine mirror statistics + +Scripts to generate Alpine mirror statistics. + +## Dependencies + +```bash +apk add lua5.3-cjson lua5.3-http lua5.3-lustache lua5.3-lyaml +``` + +## Usage + +### List of APKINDEX.tar.gz files + +The base for checking all APKINDEX files is the provided apkindex.list file. This file is generated from the master mirror ie: + +```bash +cd /var/www/localhost/htdocs +find alpine -name APKINDEX.tar.gz > apkindex.list +``` + +### Create a config file + +Copy the sample config to a new file called config.lua and change the defaults if needed (ie the output directory). + +### Generate json file + +```bash +./generate-json.lua +``` + +Which will iterate over earch mirror/apkindex combination and make an http request to fetch the last-modified header. + +### Generate html file + +```bash +./genereate-html.lua +``` + +Which will generate two parts: + +1. Generate a list of mirrors take from official mirrors.yaml file. +2. Compare all mirrors with master and generate a health report table per mirror. |
