From 2589b1295cce53f7bb83cfe2074b0b272eb57217 Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Fri, 28 Jul 2023 11:23:20 +0300 Subject: [PATCH] commands: Replace deprecated ioutil with os --- commands/server.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/commands/server.go b/commands/server.go index bf82b748de9..153f4a9d18a 100644 --- a/commands/server.go +++ b/commands/server.go @@ -23,7 +23,6 @@ import ( "errors" "fmt" "io" - "io/ioutil" "net" "net/http" "net/url" @@ -686,9 +685,9 @@ func (c *serverCommand) createCertificates(conf *commonConfig) error { c.tlsKeyFile = filepath.Join(keyDir, fmt.Sprintf("%s-key.pem", hostname)) // Check if the certificate already exists and is valid. - certPEM, err := ioutil.ReadFile(c.tlsCertFile) + certPEM, err := os.ReadFile(c.tlsCertFile) if err == nil { - rootPem, err := ioutil.ReadFile(filepath.Join(mclib.GetCAROOT(), "rootCA.pem")) + rootPem, err := os.ReadFile(filepath.Join(mclib.GetCAROOT(), "rootCA.pem")) if err == nil { if err := c.verifyCert(rootPem, certPEM, hostname); err == nil { c.r.Println("Using existing", c.tlsCertFile, "and", c.tlsKeyFile)