diff options
Diffstat (limited to 'priv')
| -rw-r--r-- | priv/schema/rabbit.schema | 18 |
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 % ========================== |
