Software /
code /
prosody
Comparison
plugins/mod_mimicking.lua @ 9985:46c038969eb3
mod_mimicking: Use more intuitive term "mimicry index" for skeletons
Fits better with the module name too.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 29 Apr 2019 17:26:56 +0200 |
parent | 9984:bbabd35b30ae |
child | 9986:9cb639ef5c72 |
comparison
equal
deleted
inserted
replaced
9984:bbabd35b30ae | 9985:46c038969eb3 |
---|---|
35 end | 35 end |
36 end); | 36 end); |
37 | 37 |
38 function module.command(arg) | 38 function module.command(arg) |
39 if (arg[1] ~= "bootstrap" or not arg[2]) then | 39 if (arg[1] ~= "bootstrap" or not arg[2]) then |
40 usage("mod_mimicking bootstrap <host>", "Initialize skeleton database"); | 40 usage("mod_mimicking bootstrap <host>", "Initialize username mimicry index"); |
41 return; | 41 return; |
42 end | 42 end |
43 | 43 |
44 local host = arg[2]; | 44 local host = arg[2]; |
45 | 45 |