summaryrefslogtreecommitdiff
path: root/priv
diff options
context:
space:
mode:
authorGerhard Lazu <gerhard@users.noreply.github.com>2020-02-20 18:41:14 +0000
committerGitHub <noreply@github.com>2020-02-20 18:41:14 +0000
commit227e69480c22fdea58d5c388ec98ecc8ecd4e8ec (patch)
treef7f12e433f41e1f16ecddfea4d9dc160bcfeb5c8 /priv
parenta5f8ac40c040cfcb51445065d9b76f59477b75c1 (diff)
parent8d5cf5e153d9c2ca957cbc8c1a0b0668c71172a2 (diff)
downloadrabbitmq-server-git-227e69480c22fdea58d5c388ec98ecc8ecd4e8ec.tar.gz
Merge pull request #2247 from rabbitmq/support-configurable-product-name-and-banner
Add ability to customize product name, version & banner
Diffstat (limited to 'priv')
-rw-r--r--priv/schema/rabbit.schema18
1 files changed, 18 insertions, 0 deletions
diff --git a/priv/schema/rabbit.schema b/priv/schema/rabbit.schema
index a8d720a4a9..1220b0dd05 100644
--- a/priv/schema/rabbit.schema
+++ b/priv/schema/rabbit.schema
@@ -1,3 +1,4 @@
+% vim:ft=erlang:
% ==============================
% Rabbit app section
% ==============================
@@ -1110,6 +1111,23 @@ end}.
{validators, ["non_zero_positive_integer"]}
]}.
+%% Product name & version overrides.
+
+{mapping, "product.name", "rabbit.product_name", [
+ {datatype, string}
+]}.
+{mapping, "product.version", "rabbit.product_version", [
+ {datatype, string}
+]}.
+
+%% Message of the day file.
+%% The content of that file is added to the banners, both logged and
+%% printed.
+
+{mapping, "motd_file", "rabbit.motd_file", [
+ {datatype, string}
+]}.
+
% ==========================
% Lager section
% ==========================