summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-09-07 23:46:02 +0200
committerGitHub <noreply@github.com>2022-09-07 23:46:02 +0200
commit26b723b14c3a5abb6bd023cbd4cbcfa276f0566a (patch)
treeab011c6af08d0a03a8e33a7e8ff286c7b02f8dea /client
parentceb337dea57c909ac83bc168e1b79872eae6dbfe (diff)
Revert "switch to script-utils for security-env"
Diffstat (limited to 'client')
-rw-r--r--client/go/script-utils/main.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/client/go/script-utils/main.go b/client/go/script-utils/main.go
index 52f52356c69..7ab16a6f831 100644
--- a/client/go/script-utils/main.go
+++ b/client/go/script-utils/main.go
@@ -27,8 +27,6 @@ func main() {
switch action {
case "export-env":
vespa.ExportDefaultEnvToSh()
- case "security-env":
- vespa.ExportSecurityEnvToSh()
case "ipv6-only":
if vespa.HasOnlyIpV6() {
os.Exit(0)
@@ -45,7 +43,6 @@ func main() {
cobra.Execute()
default:
fmt.Fprintf(os.Stderr, "unknown action '%s'\n", action)
- fmt.Fprintln(os.Stderr, "actions: export-env, ipv6-only, security-env")
- fmt.Fprintln(os.Stderr, "(also: vespa-deploy, vespa-logfmt)")
+ fmt.Fprintln(os.Stderr, "actions: export-env, ipv6-only, vespa-deploy, vespa-logfmt")
}
}