Skip to content

Commit

Permalink
Merge pull request #575 from jnummelin/systemd-kill-mode
Browse files Browse the repository at this point in the history
Add KillMode=process to systemd unit
  • Loading branch information
jnummelin authored Dec 23, 2020
2 parents 328fa58 + ae2329d commit 09d315f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/install/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func EnsureService(args []string) error {
case "linux-openrc":
deps = []string{"need net", "use dns", "after firewall"}
case "linux-systemd":
deps = []string{"After=network.target"}
deps = []string{"After=network.target", "KillMode=process"}
default:
}

Expand Down

0 comments on commit 09d315f

Please sign in to comment.