From ffbf804dfaea1457bf8c4d888008ef32e560053c Mon Sep 17 00:00:00 2001 From: Nick Anderson Date: Mon, 29 Apr 2024 11:11:41 -0500 Subject: [PATCH] Added documentation for customizing domain via Augments Ticket: ENT-11570 Changelog: None (cherry picked from commit c630d037dbcbde55606ee3c0760f6f86711175ec) --- MPF.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/MPF.md b/MPF.md index f4be62c67..a26f630f5 100644 --- a/MPF.md +++ b/MPF.md @@ -746,6 +746,23 @@ The SMTP server that `cf-execd` should use to send emails. The maximumm number of lines of output that `cf-execd` will email. +### domain + +The domain the host is configured for. Defaults to domain configured on system, e.g. the output from ```hostname -d```. This setting influences `sys.domain` and `mailfrom` if not customized. + +This setting can be customized via Augments, for example: + +```json +{ + "variables": { + "default:def.domain": { + "comment": "Override domain as configured on the host.", + "value": "exmaple.net" + } + } +} +``` + **History:** * Added in CFEngine 3.22.0, 3.21.1, 3.18.4