Merge pull request #736 from andreynering/fix-windows-ssh
Fix SSH server on Windows when running as service
This commit is contained in:
commit
e7c3be5f2f
8 changed files with 15 additions and 11 deletions
|
@ -2,7 +2,7 @@
|
||||||
// Use of this source code is governed by a zlib-style
|
// Use of this source code is governed by a zlib-style
|
||||||
// license that can be found in the LICENSE file.package service
|
// license that can be found in the LICENSE file.package service
|
||||||
|
|
||||||
// Minimal non-invasive windows only service stub.
|
// Package minwinsvc is a minimal non-invasive windows only service stub.
|
||||||
//
|
//
|
||||||
// Import to allow running as a windows service.
|
// Import to allow running as a windows service.
|
||||||
// import _ "github.com/kardianos/minwinsvc"
|
// import _ "github.com/kardianos/minwinsvc"
|
|
@ -8,17 +8,22 @@ package minwinsvc
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
|
"strconv"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"golang.org/x/sys/windows/svc"
|
"golang.org/x/sys/windows/svc"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
onExit func()
|
onExit func()
|
||||||
guard sync.Mutex
|
guard sync.Mutex
|
||||||
|
skip, _ = strconv.ParseBool(os.Getenv("SKIP_MINWINSVC"))
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
if skip {
|
||||||
|
return
|
||||||
|
}
|
||||||
interactive, err := svc.IsAnInteractiveSession()
|
interactive, err := svc.IsAnInteractiveSession()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
|
@ -22,13 +22,14 @@ import (
|
||||||
|
|
||||||
"code.gitea.io/git"
|
"code.gitea.io/git"
|
||||||
"code.gitea.io/gitea/modules/log"
|
"code.gitea.io/gitea/modules/log"
|
||||||
|
_ "code.gitea.io/gitea/modules/minwinsvc" // import minwinsvc for windows services
|
||||||
"code.gitea.io/gitea/modules/user"
|
"code.gitea.io/gitea/modules/user"
|
||||||
|
|
||||||
"github.com/Unknwon/com"
|
"github.com/Unknwon/com"
|
||||||
_ "github.com/go-macaron/cache/memcache" // memcache plugin for cache
|
_ "github.com/go-macaron/cache/memcache" // memcache plugin for cache
|
||||||
_ "github.com/go-macaron/cache/redis"
|
_ "github.com/go-macaron/cache/redis"
|
||||||
"github.com/go-macaron/session"
|
"github.com/go-macaron/session"
|
||||||
_ "github.com/go-macaron/session/redis" // redis plugin for store session
|
_ "github.com/go-macaron/session/redis" // redis plugin for store session
|
||||||
_ "github.com/kardianos/minwinsvc" // import minwinsvc for windows services
|
|
||||||
"gopkg.in/ini.v1"
|
"gopkg.in/ini.v1"
|
||||||
"strk.kbt.io/projects/go/libravatar"
|
"strk.kbt.io/projects/go/libravatar"
|
||||||
)
|
)
|
||||||
|
|
|
@ -67,7 +67,11 @@ func handleServerConn(keyID string, chans <-chan ssh.NewChannel) {
|
||||||
args := []string{"serv", "key-" + keyID, "--config=" + setting.CustomConf}
|
args := []string{"serv", "key-" + keyID, "--config=" + setting.CustomConf}
|
||||||
log.Trace("SSH: Arguments: %v", args)
|
log.Trace("SSH: Arguments: %v", args)
|
||||||
cmd := exec.Command(setting.AppPath, args...)
|
cmd := exec.Command(setting.AppPath, args...)
|
||||||
cmd.Env = append(os.Environ(), "SSH_ORIGINAL_COMMAND="+cmdName)
|
cmd.Env = append(
|
||||||
|
os.Environ(),
|
||||||
|
"SSH_ORIGINAL_COMMAND="+cmdName,
|
||||||
|
"SKIP_MINWINSVC=1",
|
||||||
|
)
|
||||||
|
|
||||||
stdout, err := cmd.StdoutPipe()
|
stdout, err := cmd.StdoutPipe()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
6
vendor/vendor.json
vendored
6
vendor/vendor.json
vendored
|
@ -514,12 +514,6 @@
|
||||||
"revision": "b2c7a7da5b2995941048f60146e67702a292e468",
|
"revision": "b2c7a7da5b2995941048f60146e67702a292e468",
|
||||||
"revisionTime": "2016-02-12T04:00:40Z"
|
"revisionTime": "2016-02-12T04:00:40Z"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"checksumSHA1": "/dBJ2h8Jo359deiC5GQ8ZYzX8M8=",
|
|
||||||
"path": "github.com/kardianos/minwinsvc",
|
|
||||||
"revision": "cad6b2b879b0970e4245a20ebf1a81a756e2bb70",
|
|
||||||
"revisionTime": "2015-11-22T16:33:09Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"checksumSHA1": "fh+CcgeUUsnuwSORHYWg0ycbp+4=",
|
"checksumSHA1": "fh+CcgeUUsnuwSORHYWg0ycbp+4=",
|
||||||
"path": "github.com/klauspost/compress/flate",
|
"path": "github.com/klauspost/compress/flate",
|
||||||
|
|
Loading…
Reference in a new issue