summaryrefslogtreecommitdiffstats
path: root/application/modules
diff options
context:
space:
mode:
authormichael pereira2011-08-31 15:42:54 +0200
committermichael pereira2011-08-31 15:42:54 +0200
commit4ef57e0848aec8fd1c190d06c823f6bb59a7f4cb (patch)
tree93d81998883d7ef8dbf260a7aab2a3844041e196 /application/modules
parentinitrd test (diff)
downloadpbs2-4ef57e0848aec8fd1c190d06c823f6bb59a7f4cb.tar.gz
pbs2-4ef57e0848aec8fd1c190d06c823f6bb59a7f4cb.tar.xz
pbs2-4ef57e0848aec8fd1c190d06c823f6bb59a7f4cb.zip
workaround
Diffstat (limited to 'application/modules')
-rw-r--r--application/modules/ipxe/controllers/AuthController.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/application/modules/ipxe/controllers/AuthController.php b/application/modules/ipxe/controllers/AuthController.php
index 494aa98..d831b09 100644
--- a/application/modules/ipxe/controllers/AuthController.php
+++ b/application/modules/ipxe/controllers/AuthController.php
@@ -70,7 +70,6 @@ class Ipxe_AuthController extends Zend_Controller_Action
$result = "#!ipxe\n";
$result .= "imgfree\n";
- $result .= "dhcp\n";
if($login){
$result .= "login\n";
$result .= "kernel http://".$_SERVER['HTTP_HOST']."/ipxe/resource/getvesamenu/alpha/".$session->getAlphasessionID()." http://\${username:uristring}:\${password:uristring}@".$_SERVER['HTTP_HOST']."/ipxe/resource/getvesamenuconfig/alpha/".$session->getAlphasessionID()."/login/true\n";
@@ -78,7 +77,7 @@ class Ipxe_AuthController extends Zend_Controller_Action
$result .= "kernel http://".$_SERVER['HTTP_HOST']."/ipxe/resource/getvesamenu/alpha/".$session->getAlphasessionID()." http://".$_SERVER['HTTP_HOST']."/ipxe/resource/getvesamenuconfig/alpha/".$session->getAlphasessionID()."/login/false\n";
}
- $result .= "module http://pbs2.mp.openslx.org/media/img/pbs2.png\n";
+ $result .= ":retry\n module http://pbs2.mp.openslx.org/media/img/pbs2.png || goto retry\n";
$result .= "boot";
header("Content-Length: ".(strlen($result)));