Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 25 Oct 2021 21:43:06 GMT
From:      Dan Langille <dvl@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: a237511ed2c4 - main - sysutils/datadog-agent: Fix pkg-message UCL
Message-ID:  <202110252143.19PLh6Ax038333@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by dvl:

URL: https://cgit.FreeBSD.org/ports/commit/?id=a237511ed2c442508c59de8bb18a5382ec9a1ec2

commit a237511ed2c442508c59de8bb18a5382ec9a1ec2
Author:     Dan Langille <dvl@FreeBSD.org>
AuthorDate: 2021-10-25 21:41:30 +0000
Commit:     Dan Langille <dvl@FreeBSD.org>
CommitDate: 2021-10-25 21:41:30 +0000

    sysutils/datadog-agent: Fix pkg-message UCL
    
    Multiline strings need to use <<EOM ... EOM
    
    Approved by:    portmgr (blanket)
---
 sysutils/datadog-agent/files/pkg-message.in | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/sysutils/datadog-agent/files/pkg-message.in b/sysutils/datadog-agent/files/pkg-message.in
index 4873cf67f354..1720eda270b1 100644
--- a/sysutils/datadog-agent/files/pkg-message.in
+++ b/sysutils/datadog-agent/files/pkg-message.in
@@ -1,22 +1,26 @@
 [
 {
   type: install
-  message: "The Datadog port has been installed with an example config file, located
+  message: <<EOM
+  The Datadog port has been installed with an example config file, located
   in %%ETCDIR%%/datadog.yaml.example.
 
   Before starting the daemon, edit %%ETCDIR%%/datadog.yaml and
   update "api_key" with DataDog API key
-  avaliable https://app.datadoghq.com/account/settings#api"
+  avaliable https://app.datadoghq.com/account/settings#api
+EOM
 }
 {
   type: remove
-  message: "If you want remove DataDog permanently from you system
+  message: <<EOM
+  If you want remove DataDog permanently from you system
   execute following commands:
 
   # rm -rf %%LOGDIR%%
   # rm -rf %%RUNDIR%%
   # rm -rf %%ETCDIR%%
-  # pw userdel %%USER%%"
+  # pw userdel %%USER%%
+EOM
 }
 ]
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202110252143.19PLh6Ax038333>