mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 22:27:37 +03:00
Update deps; especially for chacha20
This commit is contained in:
parent
9224e79c59
commit
10f0503d50
23 changed files with 1785 additions and 1282 deletions
7
vendor/github.com/kardianos/service/service_upstart_linux.go
generated
vendored
7
vendor/github.com/kardianos/service/service_upstart_linux.go
generated
vendored
|
@ -21,6 +21,13 @@ 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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue