upstart: Oneshot rules should always have Restart=no

This commit is contained in:
William A. Kennington III 2014-04-10 10:16:30 -05:00 committed by Eelco Dolstra
parent ee9c068b0c
commit 6ff2521974

View file

@ -93,7 +93,7 @@ let
if job.daemonType == "fork" || job.daemonType == "daemon" then { Type = "forking"; GuessMainPID = true; } else
if job.daemonType == "none" then { } else
throw "invalid daemon type `${job.daemonType}'")
// optionalAttrs (!job.task && job.respawn)
// optionalAttrs (!job.task && !(job.script == "" && job.exec == "") && job.respawn)
{ Restart = "always"; }
// optionalAttrs job.task
{ Type = "oneshot"; RemainAfterExit = false; };