From b78cdf6a7433dec7c74a09552d4012a0d21b2789 Mon Sep 17 00:00:00 2001 From: nhyatt Date: Mon, 22 Jan 2024 10:44:21 -0600 Subject: [PATCH] corrects sh execution --- internal/nsupdate/nsupdate.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/nsupdate/nsupdate.go b/internal/nsupdate/nsupdate.go index c2d8620..4b4f51d 100644 --- a/internal/nsupdate/nsupdate.go +++ b/internal/nsupdate/nsupdate.go @@ -70,7 +70,7 @@ func (c NsUpdateStruct) Delete(record, recordType string) error { stderr bytes.Buffer ) - command := fmt.Sprintf(`#/bin/env/sh + command := fmt.Sprintf(`#/usr/bin/env sh read -r -d '' DDNS_KEY <<- EOF key "%s" { algorithm "%s"; @@ -85,7 +85,7 @@ EOF nsupdate -v -k <(printf '%%s' "${DDNS_KEY}") <(printf '%%s\n\n' "${COMMAND}") `, c.Key.Label, c.Key.Algorithm, c.Key.Secret, c.Server, record, strings.ToUpper(recordType)) - cmd := exec.Command("/usr/bin/sh", "-c", command) + cmd := exec.Command("/usr/bin/env", "sh", "-c", command) cmd.Stdout = &stdout cmd.Stderr = &stderr if err := cmd.Run(); err != nil { @@ -102,7 +102,7 @@ func (c NsUpdateStruct) Create(record, recordType, value string) error { stderr bytes.Buffer ) - command := fmt.Sprintf(`#/bin/env/sh + command := fmt.Sprintf(`#/usr/bin/env sh read -r -d '' DDNS_KEY <<- EOF key "%s" { algorithm "%s"; @@ -117,7 +117,7 @@ EOF nsupdate -v -k <(printf '%%s' "${DDNS_KEY}") <(printf '%%s\n\n' "${COMMAND}") `, c.Key.Label, c.Key.Algorithm, c.Key.Secret, c.Server, record, strings.ToUpper(recordType), value) - cmd := exec.Command("/usr/bin/sh", "-c", command) + cmd := exec.Command("/usr/bin/env", "sh", "-c", command) cmd.Stdout = &stdout cmd.Stderr = &stderr if err := cmd.Run(); err != nil {