Update deps

This commit is contained in:
Frank Denis 2019-12-16 20:02:53 +01:00
parent 07e605e9f4
commit ed5431d7b9
13 changed files with 3981 additions and 38 deletions

View file

@ -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