diff options
-rw-r--r-- | README.md | 48 |
1 files changed, 34 insertions, 14 deletions
@@ -13,9 +13,9 @@ will be maintained. Currently the shell scripts and Python scripts are | |||
13 | actually being used I think. Evilham asked me to write this, after I | 13 | actually being used I think. Evilham asked me to write this, after I |
14 | badgered him about his Python scripts. | 14 | badgered him about his Python scripts. |
15 | 15 | ||
16 | The source code is at https://sledjhamr.org/cgit/mirror-checker-lua/ | 16 | The source code is at [https://sledjhamr.org/cgit/mirror-checker-lua/] |
17 | 17 | ||
18 | The issue tracker is at https://sledjhamr.org/mantisbt/project_page.php?project_id=13 | 18 | The issue tracker is at [https://sledjhamr.org/mantisbt/project_page.php?project_id=13] |
19 | 19 | ||
20 | 20 | ||
21 | Installation. | 21 | Installation. |
@@ -51,45 +51,65 @@ the easy to read emails (once I write that bit). | |||
51 | Note that unlike typical commands, you can't run single character options | 51 | Note that unlike typical commands, you can't run single character options |
52 | together, so this is wrong - | 52 | together, so this is wrong - |
53 | 53 | ||
54 | ./mirror-checker.lua -vvv | 54 | ```Shell Session |
55 | $ ./mirror-checker.lua -vvv | ||
56 | ``` | ||
55 | 57 | ||
56 | Instead do this - | 58 | Instead do this - |
57 | 59 | ||
58 | ./mirror-checker.lua -v -v -v | 60 | ```Shell Session |
61 | $ ./mirror-checker.lua -v -v -v | ||
62 | ``` | ||
59 | 63 | ||
60 | Just run the script to do all of the tests - | 64 | Just run the script to do all of the tests - |
61 | 65 | ||
62 | ./mirror-checker.lua | 66 | ```Shell Session |
67 | $ ./mirror-checker.lua | ||
68 | ``` | ||
63 | 69 | ||
64 | Which will print any errors. If you don't want to see errors - | 70 | Which will print any errors. If you don't want to see errors - |
65 | 71 | ||
66 | ./mirror-checker.lua -q | 72 | ```Shell Session |
73 | $ ./mirror-checker.lua -q | ||
74 | ``` | ||
67 | 75 | ||
68 | If you want to see warnings to (as usual, the more -v options, the more | 76 | If you want to see warnings to (as usual, the more -v options, the more |
69 | details) - | 77 | details) - |
70 | 78 | ||
71 | ./mirror-checker.lua -v | 79 | ```Shell Session |
80 | $ ./mirror-checker.lua -v | ||
81 | ``` | ||
72 | 82 | ||
73 | Or use the usual options for the help and version number - | 83 | Or use the usual options for the help and version number - |
74 | 84 | ||
75 | ./mirror-checker.lua -h | 85 | ```Shell Session |
76 | ./mirror-checker.lua --help | 86 | $ ./mirror-checker.lua -h |
77 | ./mirror-checker.lua --version | 87 | $ ./mirror-checker.lua --help |
88 | $ ./mirror-checker.lua --version | ||
89 | ``` | ||
78 | 90 | ||
79 | To run the tests on a specific mirror, for example pkgmaster.devuan.org - | 91 | To run the tests on a specific mirror, for example pkgmaster.devuan.org - |
80 | 92 | ||
81 | ./mirror-checker.lua pkgmaster.devuan.org | 93 | ```Shell Session |
94 | $ ./mirror-checker.lua pkgmaster.devuan.org | ||
95 | ``` | ||
82 | 96 | ||
83 | You can use the --tests option to tune which tests are run, for example | 97 | You can use the --tests option to tune which tests are run, for example |
84 | to stop IPv6 tests, coz you don't have IPv6 - | 98 | to stop IPv6 tests, coz you don't have IPv6 - |
85 | 99 | ||
86 | ./mirror-checker.lua --tests=-IPv6 | 100 | ```Shell Session |
101 | $ ./mirror-checker.lua --tests=-IPv6 | ||
102 | ``` | ||
87 | 103 | ||
88 | To do the same, but not run the HTTPS tests either - | 104 | To do the same, but not run the HTTPS tests either - |
89 | 105 | ||
90 | ./mirror-checker.lua --tests=-IPv6,-https | 106 | ```Shell Session |
107 | $ ./mirror-checker.lua --tests=-IPv6,-https | ||
108 | ``` | ||
91 | 109 | ||
92 | To only run the http integrity tests, only on IPv6 - | 110 | To only run the http integrity tests, only on IPv6 - |
93 | 111 | ||
94 | ./mirror-checker.lua --tests=http,Integrity,IPv6 | 112 | ```Shell Session |
113 | $ ./mirror-checker.lua --tests=http,Integrity,IPv6 | ||
114 | ``` | ||
95 | 115 | ||