File tree 2 files changed +27
-4
lines changed
test/jdk/tools/jpackage/helpers/jdk/jpackage/test
2 files changed +27
-4
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2019, 2020, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -117,9 +117,8 @@ private static boolean isBundlerSupported(String bundlerClass) {
117
117
MAC .stream ()).collect (Collectors .toUnmodifiableSet ());
118
118
119
119
private final static class Inner {
120
-
121
120
private final static Set <String > DISABLED_PACKAGERS = Optional .ofNullable (
122
121
TKit .tokenizeConfigProperty ("disabledPackagers" )).orElse (
123
- Collections .emptySet ());
122
+ TKit . isUbuntu () ? Set . of ( "rpm" ) : Collections .emptySet ());
124
123
}
125
124
}
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2019, 2020, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
22
22
*/
23
23
package jdk .jpackage .test ;
24
24
25
+ import java .io .BufferedReader ;
26
+ import java .io .File ;
25
27
import java .io .FileOutputStream ;
28
+ import java .io .FileReader ;
26
29
import java .io .IOException ;
27
30
import java .io .PrintStream ;
28
31
import java .lang .reflect .InvocationTargetException ;
@@ -178,6 +181,27 @@ public static boolean isLinux() {
178
181
return ((OS .contains ("nix" ) || OS .contains ("nux" )));
179
182
}
180
183
184
+ public static boolean isUbuntu () {
185
+ if (!isLinux ()) {
186
+ return false ;
187
+ }
188
+ File releaseFile = new File ("/etc/os-release" );
189
+ if (releaseFile .exists ()) {
190
+ try (BufferedReader lineReader = new BufferedReader (new FileReader (releaseFile ))) {
191
+ String lineText = null ;
192
+ while ((lineText = lineReader .readLine ()) != null ) {
193
+ if (lineText .indexOf ("NAME=\" Ubuntu" ) != -1 ) {
194
+ lineReader .close ();
195
+ return true ;
196
+ }
197
+ }
198
+ } catch (IOException e ) {
199
+ e .printStackTrace ();
200
+ }
201
+ }
202
+ return false ;
203
+ }
204
+
181
205
static void log (String v ) {
182
206
System .out .println (v );
183
207
if (extraLogStream != null ) {
You can’t perform that action at this time.
0 commit comments