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
The control file for your debian package requires "java6-runtime" which under ubuntu requires the installation of "openjdk-6-jre". if you are running a headless host (no GUI) then what you want is to install "openjdk-6-jre-headless"
The way around this is for your package to depend on "java6-runtime" OR "java6-runtime-headless". Here are the necessary changes:
diff --git a/packaging/debroot/DEBIAN/control b/packaging/debroot/DEBIAN/control
index 5f2fc20..346d9e8 100644
--- a/packaging/debroot/DEBIAN/control
+++ b/packaging/debroot/DEBIAN/control
@@ -3,7 +3,7 @@ Version: %VERSION%
Section: utils
Priority: optional
Architecture: all
-Depends: openssh-client, java6-runtime, adduser (>= 3.11)
+Depends: openssh-client, java6-runtime | java6-runtime-headless , adduser (>= 3.11)
Maintainer: Noah Campbell <[email protected]>
Description: No ordinary wooden deck. You can build a bon fire on this deck.
Rundeck provides a single console for dispatching commands across many
The text was updated successfully, but these errors were encountered:
Greetings,
The control file for your debian package requires "java6-runtime" which under ubuntu requires the installation of "openjdk-6-jre". if you are running a headless host (no GUI) then what you want is to install "openjdk-6-jre-headless"
The way around this is for your package to depend on "java6-runtime" OR "java6-runtime-headless". Here are the necessary changes:
The text was updated successfully, but these errors were encountered: