mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 14:17:36 +03:00
Update deps
This commit is contained in:
parent
94cba8cf78
commit
c748630691
70 changed files with 12992 additions and 343 deletions
6
vendor/github.com/kardianos/service/service_upstart_linux.go
generated
vendored
6
vendor/github.com/kardianos/service/service_upstart_linux.go
generated
vendored
|
@ -152,12 +152,14 @@ func (s *upstart) Install() error {
|
|||
HasKillStanza bool
|
||||
HasSetUIDStanza bool
|
||||
LogOutput bool
|
||||
LogDirectory string
|
||||
}{
|
||||
s.Config,
|
||||
path,
|
||||
s.hasKillStanza(),
|
||||
s.hasSetUIDStanza(),
|
||||
s.Option.bool(optionLogOutput, optionLogOutputDefault),
|
||||
s.Option.string(optionLogDirectory, defaultLogDirectory),
|
||||
}
|
||||
|
||||
return s.template().Execute(f, to)
|
||||
|
@ -254,8 +256,8 @@ end script
|
|||
# Start
|
||||
script
|
||||
{{if .LogOutput}}
|
||||
stdout_log="/var/log/{{.Name}}.out"
|
||||
stderr_log="/var/log/{{.Name}}.err"
|
||||
stdout_log="{{.LogDirectory}}/{{.Name}}.out"
|
||||
stderr_log="{{.LogDirectory}}/{{.Name}}.err"
|
||||
{{end}}
|
||||
|
||||
if [ -f "/etc/sysconfig/{{.Name}}" ]; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue