Skip to content

Commit

Permalink
Fix rpmVendor context
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed Sep 15, 2017
1 parent 94b31d3 commit 34a8e60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ lazy val rpmPackageRelease = (project in file("package/rpm-release"))
maintainer := "TheHive Project <[email protected]>",
version := "1.0.0",
rpmRelease := "3",
rpmVendor in Rpm := "TheHive Project",
rpmVendor := "TheHive Project",
rpmUrl := Some("http://thehive-project.org/"),
rpmLicense := Some("AGPL"),
maintainerScripts in Rpm := Map.empty,
Expand Down Expand Up @@ -134,7 +134,7 @@ linuxMakeStartScript in Debian := None

// RPM //
rpmRelease := "1"
rpmVendor in Rpm := "TheHive Project"
rpmVendor := "TheHive Project"
rpmUrl := Some("http://thehive-project.org/")
rpmLicense := Some("AGPL")
rpmRequirements += "java-1.8.0-openjdk-headless"
Expand Down Expand Up @@ -180,7 +180,7 @@ dockerCommands ~= { dc =>
.splitAt(4)
dockerInitCmds ++
Seq(
Cmd("ADD", "var", "/var"),
Cmd("ADD", "var", "/var"),
Cmd("ADD", "etc", "/etc"),
ExecCmd("RUN", "chown", "-R", "daemon:root", "/var/log/thehive"),
ExecCmd("RUN", "chmod", "+x", "/opt/thehive/bin/thehive", "/opt/thehive/entrypoint")) ++
Expand Down

0 comments on commit 34a8e60

Please sign in to comment.