Update deps

This commit is contained in:
Frank Denis 2022-10-15 10:37:07 +02:00
parent 94cba8cf78
commit c748630691
70 changed files with 12992 additions and 343 deletions

View file

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