Skip to content

Commit

Permalink
sbt#357 remove Upstart defaultFacility line altogether
Browse files Browse the repository at this point in the history
  • Loading branch information
flowma committed Sep 23, 2014
1 parent 4607b1b commit 576df28
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ object JavaServerAppPackaging {
private[this] def defaultFacilities(loader: ServerLoader): String = {
loader match {
case SystemV => "$remote_fs $syslog"
case Upstart => ""

This comment has been minimized.

Copy link
@muuki88

muuki88 Sep 23, 2014

This will result in scala.MatchError as we are missing one setting. Just keep the empty string ;)

case Systemd => "network.target"
}
}
Expand Down

0 comments on commit 576df28

Please sign in to comment.