diff options
author | Michael Neves | 2012-06-26 14:56:07 +0200 |
---|---|---|
committer | Michael Neves | 2012-06-26 14:56:07 +0200 |
commit | 10644a5cdb63b81ccfb853f039137271e1cf20f3 (patch) | |
tree | 0a0f509b7673c4bf27621c6d08811aa056cad664 | |
parent | https ipxe image compressed (diff) | |
download | pbs2-10644a5cdb63b81ccfb853f039137271e1cf20f3.tar.gz pbs2-10644a5cdb63b81ccfb853f039137271e1cf20f3.tar.xz pbs2-10644a5cdb63b81ccfb853f039137271e1cf20f3.zip |
http for vesamenu
-rw-r--r-- | application/modules/ipxe/controllers/AuthController.php | 4 |
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; |