You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using Jdeb to create a debian package for a play app. Play 2.3.3
Most things work fine, but the following issues prevent the projec from executing correctly on a Ubuntu 12.04 system.
The start script /usr/share/myapp/bin/myapp is not executable. It is rather -rw-r--r--
The directories /var/log/myapp and /var/run/myapp are not created. On installing the package via dpkg, a chown: no such file /var/log/myapp (and same for ../run/..) is shown.
I have the following configuration in build.sbt. Everythign else is play defaults
maintainer in Linux := "Me Myself <[email protected]>"
packageSummary in Linux := "myapp"
packageDescription in Debian := "My App"
packageBin in Debian <<= debianJDebPackaging in Debian
The text was updated successfully, but these errors were encountered:
I'm using Jdeb to create a debian package for a play app. Play
2.3.3
Most things work fine, but the following issues prevent the projec from executing correctly on a Ubuntu 12.04 system.
/usr/share/myapp/bin/myapp
is not executable. It is rather-rw-r--r--
/var/log/myapp
and/var/run/myapp
are not created. On installing the package viadpkg
, achown: no such file /var/log/myapp
(and same for../run/..
) is shown.I have the following configuration in
build.sbt
. Everythign else is play defaultsThe text was updated successfully, but these errors were encountered: