mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 14:17:36 +03:00
Update deps for Go 1.11
This commit is contained in:
parent
b6847fab99
commit
76fdb51c38
139 changed files with 19335 additions and 532 deletions
14
vendor/github.com/kardianos/service/service_upstart_linux.go
generated
vendored
14
vendor/github.com/kardianos/service/service_upstart_linux.go
generated
vendored
|
@ -31,14 +31,16 @@ func isUpstart() bool {
|
|||
}
|
||||
|
||||
type upstart struct {
|
||||
i Interface
|
||||
i Interface
|
||||
platform string
|
||||
*Config
|
||||
}
|
||||
|
||||
func newUpstartService(i Interface, c *Config) (Service, error) {
|
||||
func newUpstartService(i Interface, platform string, c *Config) (Service, error) {
|
||||
s := &upstart{
|
||||
i: i,
|
||||
Config: c,
|
||||
i: i,
|
||||
platform: platform,
|
||||
Config: c,
|
||||
}
|
||||
|
||||
return s, nil
|
||||
|
@ -51,6 +53,10 @@ func (s *upstart) String() string {
|
|||
return s.Name
|
||||
}
|
||||
|
||||
func (s *upstart) Platform() string {
|
||||
return s.platform
|
||||
}
|
||||
|
||||
// Upstart has some support for user services in graphical sessions.
|
||||
// Due to the mix of actual support for user services over versions, just don't bother.
|
||||
// Upstart will be replaced by systemd in most cases anyway.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue