summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorralph isenmann2021-03-18 17:53:47 +0100
committerralph isenmann2021-03-18 17:53:47 +0100
commit6af65ed2c456306bb8654777b9a8aab4f37710d9 (patch)
tree588240408dbcf40c695e6c11304073a3f66fdbf2
parent[client] Add Check for docker_container feature (diff)
downloadtutor-module-6af65ed2.tar.gz
tutor-module-6af65ed2.tar.xz
tutor-module-6af65ed2.zip
[server] Add future function docker_container.
because of missing entry in db this featuer is currently commented out
-rw-r--r--dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/SupportedFeatures.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/SupportedFeatures.java b/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/SupportedFeatures.java
index c59ddd47..a454fc21 100644
--- a/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/SupportedFeatures.java
+++ b/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/SupportedFeatures.java
@@ -13,6 +13,10 @@ public class SupportedFeatures {
registerFeature(Feature.SERVER_SIDE_COPY);
registerFeature(Feature.LECTURE_FILTER_LDAP);
registerFeature(Feature.CONFIGURE_USB);
+ // TODO Docker Container currently not as a release Feature. Needs Update of Database.
+ // Enable Feature by adding ("docker", "Docker") to virtualizer table
+ // and rebuild Server with enabled Feature and replace jar on Sat.
+// registerFeature(Feature.DOCKER_CONTAINER);
}
public static String getFeatureString() {