-
Notifications
You must be signed in to change notification settings - Fork 12
Debian 9 support #1
base: master
Are you sure you want to change the base?
Conversation
mbaechler
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you very much for this PR.
I have small comments on it but it's great overall.
Dockerfile
Outdated
| RUN cd obm/java/sync && \ | ||
| mvn dependency:go-offline || true && \ | ||
| mvn package -T1C | ||
| mvn package -DskipTests -T1C |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's not the intent of this changeset.
java/tomcat/debian/obm-tomcat.init
Outdated
|
|
||
| if [ -z "$JAVA_HOME" ]; then | ||
| JAVA_HOME="/usr/lib/jvm/java-7-openjdk-"`dpkg --print-architecture` | ||
| JAVA_HOME="usr" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
java_home can't really be defined as usr because it expect a specific directory layout.
It has to be /usr/lib/jvm/something
|
Ok thanks
Please do your comments. Will do changes next weekend.
Jérémy Carnus
________________________________
De: Matthieu Baechler <[email protected]>
Envoyé: 1 sept. 2017 03:09
À: linagora/OBM
Cc: Jérémy Carnus; Author
Objet: Re: [linagora/OBM] Debian 9 support (#1)
@mbaechler commented on this pull request.
Thank you very much for this PR.
I have small comments on it but it's great overall.
________________________________
In Dockerfile:
@@ -35,7 +35,7 @@ ADD . obm
## BUILD OBM PACKAGES
RUN cd obm/java/sync && \
mvn dependency:go-offline || true && \
- mvn package -T1C
+ mvn package -DskipTests -T1C
I think it's not the intent of this changeset.
________________________________
In java/tomcat/debian/obm-tomcat.init:
@@ -36,7 +36,7 @@ if [ -r /etc/default/rcS ]; then
fi
if [ -z "$JAVA_HOME" ]; then
- JAVA_HOME="/usr/lib/jvm/java-7-openjdk-"`dpkg --print-architecture`
+ JAVA_HOME="usr"
java_home can't really be defined as usr because it expect a specific directory layout.
It has to be /usr/lib/jvm/something
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
|
Updated |
mbaechler
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It will need some squashing of commits but that's ok for me
|
Thanks, I let you doing this ? |
|
Hi, |
No description provided.