Deps update

This commit is contained in:
Frank Denis 2018-05-10 12:03:06 +02:00
parent 3c1d7acdaf
commit 2b070c6e93
5 changed files with 7 additions and 14 deletions

View file

@ -15,7 +15,7 @@
"windows/registry",
"windows/svc/eventlog"
]
revision = "78d5f264b493f125018180c204871ecf58a2dce1"
revision = "7dfd1290c7917b7ba22824b9d24954ab3002fe24"
[solve-meta]
analyzer-name = "dep"

View file

@ -8,7 +8,7 @@
"ed25519",
"ed25519/internal/edwards25519"
]
revision = "13931e22f9e72ea58bb73048bc752b48c6d4d4ac"
revision = "2d027ae1dddd4694d54f7a8b6cbe78dca8720226"
[solve-meta]
analyzer-name = "dep"

View file

@ -21,13 +21,6 @@ func isUpstart() bool {
if _, err := os.Stat("/sbin/upstart-udev-bridge"); err == nil {
return true
}
if _, err := os.Stat("/sbin/init"); err == nil {
if out, err := exec.Command("/sbin/init", "--version").Output(); err == nil {
if strings.Contains(string(out), "init (upstart") {
return true
}
}
}
return false
}