From 3047e48add5dd3095650394de038171efdb53f1f Mon Sep 17 00:00:00 2001 From: Christian Richter Date: Mon, 9 May 2022 09:47:54 +0200 Subject: [PATCH] reword ocis init from ocis to Infinite Scale Signed-off-by: Christian Richter --- ocis/pkg/command/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ocis/pkg/command/init.go b/ocis/pkg/command/init.go index 5b08786978..62f2f26c50 100644 --- a/ocis/pkg/command/init.go +++ b/ocis/pkg/command/init.go @@ -50,7 +50,7 @@ func InitCommand(cfg *config.Config) *cli.Command { insecureFlag := c.String("insecure") insecure := false if insecureFlag == "ask" { - answer := strings.ToLower(stringPrompt("Do you want to configure oCIS with certificate checking disabled?\n This is not recommended for public instances! [yes | no = default]")) + answer := strings.ToLower(stringPrompt("Do you want to configure Infinite Scale with certificate checking disabled?\n This is not recommended for public instances! [yes | no = default]")) if answer == "yes" || answer == "y" { insecure = true }