sbt-native-packager
sbt-native-packager copied to clipboard
sbt Native Packager
I'm deploying a Play Framework 2.5.3 application as an RPM using sbt native packager 1.2.0-M3 (using plugins PlayScala, RpmPlugin, SystemdPlugin). I use the linux configuration mechanism as described at http://www.scala-sbt.org/sbt-native-packager/archetypes/java_server/customize.html#linux-configuration...
Hi, I am on sbt version number 0.13.15 ## Expected behaviour The generated bat script should have -no-version-check option in it. ## Actual behaviour The generated bat script doesn't have...
## Status Quo Native-packager has currently a [homemade templating system](https://github.com/sbt/sbt-native-packager/blob/e4e6504c1f6a75fb346958f68d0f7c13fec26877/src/main/scala/com/typesafe/sbt/packager/archetypes/TemplateWriter.scala), which has scaled well so far. It provides the following features - one-time resolving of placeholders - bash and bat...
When I define prerequisites in an RPM build using the `rpmPrerequisites` key, I get warnings that "prereq is deprecated". See: [Scriptlet Dependencies documentation on rpm.org](http://rpm.org/wiki/PackagerDocs/MoreOnDependencies#ScriptletDependencies). Because of a caveat documented...
## Expected behaviour When I run this: ``` sbt universal-docs:package-zip-tarball ``` It should run tar with the options `-pcvf`, as occurs with `sbt universal:package-zip-tarball` ## Actual behaviour Tar is invoked...
## Expected behaviour Process `dpkg -i` should give prompt for any changed config files that are to be overwritten. ## Actual behaviour `dpkg -i` fails to do so. ## Information...
I run into multiple issues where settings are not isolated between plugins. For example, I want to build both a universal-zip and a debian installer. It is not possible to...
Use [this bash guide](http://redsymbol.net/articles/unofficial-bash-strict-mode/) to find possible bugs and make the bash script more robust. ``` bash #!/bin/bash set -euo pipefail IFS=$'\n\t' ```
Building an RPM on OS X successfully, but the startRunlevels for SystemV don't seem to take. I'm using 1.2.0-M8 plugin added in plugins.sbt: `addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.2.0-M8")` plugin config...
Hi, by default daemonUser is created with home == ```/home/``` (which doesn't exists) as this is a daemon user that would make sense to point to ```/usr/share/``` or ```/var/lib/``` or...