-
Notifications
You must be signed in to change notification settings - Fork 686
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch systemd units to use Type=exec instead of Type=oneshot
`oneshot` is designed to be used with RemainAfterExit, but we don't need that nor use it. After reviewing <https://www.freedesktop.org/software/systemd/man/latest/systemd.service.html>, `exec` appears to be the correct type since we want the service to be running once the binary has started, not once it's finished. Practically this shouldn't make a big difference except that `systemctl start <name>` won't wait for the entire command to complete. Fixes #7349.
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters