summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Neves2012-06-26 14:56:07 +0200
committerMichael Neves2012-06-26 14:56:07 +0200
commit10644a5cdb63b81ccfb853f039137271e1cf20f3 (patch)
tree0a0f509b7673c4bf27621c6d08811aa056cad664
parenthttps ipxe image compressed (diff)
downloadpbs2-10644a5cdb63b81ccfb853f039137271e1cf20f3.tar.gz
pbs2-10644a5cdb63b81ccfb853f039137271e1cf20f3.tar.xz
pbs2-10644a5cdb63b81ccfb853f039137271e1cf20f3.zip
http for vesamenu
-rw-r--r--application/modules/ipxe/controllers/AuthController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/application/modules/ipxe/controllers/AuthController.php b/application/modules/ipxe/controllers/AuthController.php
index 5b2de3a..4a5b501 100644
--- a/application/modules/ipxe/controllers/AuthController.php
+++ b/application/modules/ipxe/controllers/AuthController.php
@@ -88,10 +88,10 @@ class Ipxe_AuthController extends Zend_Controller_Action {
if(isset($this->session)) {
$result .= "set filename ".$this->httpmode."://".$_SERVER['HTTP_HOST']."/ipxe/resource/getvesamenuconfig/alpha/".$this->session->getAlphasessionID()."/error/".$this->error."\n";
$result .= ":start\n";
- $result .= "chain ".$this->httpmode."://".$_SERVER['HTTP_HOST']."/ipxe/vesamenu.c32 \${filename}\n";
+ $result .= "chain http://".$_SERVER['HTTP_HOST']."/ipxe/vesamenu.c32 \${filename}\n";
$result .= "goto start\n";
} else {
- $result .= "chain ".$this->httpmode."://".$_SERVER['HTTP_HOST']."/ipxe/vesamenu.c32 http://".$_SERVER['HTTP_HOST']."/ipxe/resource/getvesamenuconfig/serialnumber/$serialnumber/mac/$mac/error/$this->error\n";
+ $result .= "chain http://".$_SERVER['HTTP_HOST']."/ipxe/vesamenu.c32 http://".$_SERVER['HTTP_HOST']."/ipxe/resource/getvesamenuconfig/serialnumber/$serialnumber/mac/$mac/error/$this->error\n";
}
header("Content-Length: ".(strlen($result)));
echo $result;