From: Vsevolod Stakhov Date: Sat, 10 Feb 2018 15:57:01 +0000 (+0000) Subject: [Minor] Beautify logo X-Git-Tag: 1.7.0~210 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0b0f4af5527dc590c2b0c1930d16bf1f60e11805;p=thirdparty%2Frspamd.git [Minor] Beautify logo --- diff --git a/lualib/rspamadm/configwizard.lua b/lualib/rspamadm/configwizard.lua index e34c6eb5b8..4b144b441a 100644 --- a/lualib/rspamadm/configwizard.lua +++ b/lualib/rspamadm/configwizard.lua @@ -23,6 +23,15 @@ local ucl = require "ucl" local plugins_stat = require "rspamadm/plugins_stats" +local rspamd_logo = [[ + ____ _ + | _ \ ___ _ __ __ _ _ __ ___ __| | + | |_) |/ __|| '_ \ / _` || '_ ` _ \ / _` | + | _ < \__ \| |_) || (_| || | | | | || (_| | + |_| \_\|___/| .__/ \__,_||_| |_| |_| \__,_| + |_| +]] + local function printf(fmt, ...) print(string.format(fmt, ...)) end @@ -277,7 +286,8 @@ return function(args, cfg) } rspamd_util.umask('022') - printf("Welcome to %s configuration tool", highlight("Rspamd")) + printf(highlight(rspamd_logo)) + printf("Welcome to the configuration tool") printf("We use %s configuration file, writing results to %s", highlight(cfg.config_path), highlight(local_conf)) plugins_stat(nil, nil)