Browse Source

file mode fixed

bugtaker 6 years ago
parent
commit
326b4d6581
2 changed files with 3 additions and 3 deletions
  1. 1 1
      ssh/ssh.go
  2. 2 2
      util/util.go

+ 1 - 1
ssh/ssh.go

@@ -3,8 +3,8 @@ package ssh
 import (
 	"github.com/jsmartx/giter/util"
 	"github.com/kevinburke/ssh_config"
-	"os"
 	fs "io/ioutil"
+	"os"
 	"path/filepath"
 )
 

+ 2 - 2
util/util.go

@@ -25,7 +25,7 @@ func Keygen(publicPath, privatePath string, bits int) error {
 		return err
 	}
 	// generate and write private key as PEM
-	privateFile, err := os.Create(privatePath)
+	privateFile, err := os.OpenFile(privatePath, os.O_RDWR|os.O_CREATE, 0600)
 	defer privateFile.Close()
 	if err != nil {
 		return err
@@ -42,7 +42,7 @@ func Keygen(publicPath, privatePath string, bits int) error {
 	if err != nil {
 		return err
 	}
-	return fs.WriteFile(publicPath, ssh.MarshalAuthorizedKey(publicKey), 0755)
+	return fs.WriteFile(publicPath, ssh.MarshalAuthorizedKey(publicKey), 0600)
 }
 
 func JoinHostPort(host, port string) string {