summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2015-12-11 18:02:04 +0100
committerSimon Rettberg2015-12-11 18:02:04 +0100
commit38ea2aa9a83f8e6ff2d43e9d96dc2759d4636135 (patch)
tree3ed8599b25f3dbf676051b1a4ed1d6994ca673d8
parent[ipxe-template] Remove v4/ prefix (diff)
downloadtmlite-bwlp-38ea2aa9a83f8e6ff2d43e9d96dc2759d4636135.tar.gz
tmlite-bwlp-38ea2aa9a83f8e6ff2d43e9d96dc2759d4636135.tar.xz
tmlite-bwlp-38ea2aa9a83f8e6ff2d43e9d96dc2759d4636135.zip
[CompileIPxe] remove v4 subdir for ipxelinux.0 destination dir
-rw-r--r--src/main/java/org/openslx/taskmanager/tasks/CompileIPxe.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/openslx/taskmanager/tasks/CompileIPxe.java b/src/main/java/org/openslx/taskmanager/tasks/CompileIPxe.java
index f3ebc82..b5a5da1 100644
--- a/src/main/java/org/openslx/taskmanager/tasks/CompileIPxe.java
+++ b/src/main/java/org/openslx/taskmanager/tasks/CompileIPxe.java
@@ -137,7 +137,7 @@ public class CompileIPxe extends AbstractTask
return false;
}
try {
- FileUtils.copyFile( new File( "/opt/openslx/ipxe/src/bin/undionly.kkkpxe" ), new File( "/srv/openslx/tftp/v4/ipxelinux.0" ) );
+ FileUtils.copyFile( new File( "/opt/openslx/ipxe/src/bin/undionly.kkkpxe" ), new File( "/srv/openslx/tftp/ipxelinux.0" ) );
} catch ( Exception e ) {
status.error = e.toString();
return false;