-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from ldvm/f-debpkg
PR: debpkg
- Loading branch information
Showing
4 changed files
with
23 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,4 +29,4 @@ class VisualizationApiController(implicit inj: Injector) extends ApiController w | |
} | ||
} | ||
|
||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,23 @@ | ||
import play.PlayScala | ||
import com.typesafe.sbt.SbtNativePackager._ | ||
import NativePackagerKeys._ | ||
import com.typesafe.sbt.packager.archetypes.ServerLoader.SystemV | ||
|
||
name := """payola-viz""" | ||
name := "LDVMi" | ||
|
||
version := "1.0-SNAPSHOT" | ||
|
||
/** Debian packaging **/ | ||
maintainer in Linux := "Jiri Helmich <[email protected]>" | ||
|
||
packageSummary in Linux := "LDVMi - Linked Data visualizations" | ||
|
||
packageDescription := "LDVMi - Linked Data visualizations" | ||
|
||
serverLoading in Debian := SystemV | ||
|
||
debianPackageDependencies ++= Seq("openjdk-7-jre-headless") | ||
|
||
lazy val root = (project in file(".")).enablePlugins(PlayScala) | ||
|
||
scalaVersion := "2.11.4" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
mkdir /var/lib/ldvmi | ||
chown ldvmi:ldvmi /var/lib/ldvmi | ||
usermod -d /var/lib/ldvmi ldvmi | ||
usermod -s /bin/sh ldvmi | ||
chown ldvmi:ldvmi /usr/share/ldvmi/ | ||
/etc/init.d/ldvmi start |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
-DapplyEvolutions.default=true |