mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-06 06:37:36 +03:00
Update deps
This commit is contained in:
parent
07e605e9f4
commit
ed5431d7b9
13 changed files with 3981 additions and 38 deletions
8
vendor/github.com/kardianos/service/service_upstart_linux.go
generated
vendored
8
vendor/github.com/kardianos/service/service_upstart_linux.go
generated
vendored
|
@ -13,7 +13,6 @@ import (
|
|||
"strings"
|
||||
"syscall"
|
||||
"text/template"
|
||||
"time"
|
||||
)
|
||||
|
||||
func isUpstart() bool {
|
||||
|
@ -225,12 +224,7 @@ func (s *upstart) Stop() error {
|
|||
}
|
||||
|
||||
func (s *upstart) Restart() error {
|
||||
err := s.Stop()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
time.Sleep(50 * time.Millisecond)
|
||||
return s.Start()
|
||||
return run("initctl", "restart", s.Name)
|
||||
}
|
||||
|
||||
// The upstart script should stop with an INT or the Go runtime will terminate
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue