summaryrefslogtreecommitdiffstats
path: root/application/modules/ipxe/controllers/AuthController.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/modules/ipxe/controllers/AuthController.php')
-rw-r--r--application/modules/ipxe/controllers/AuthController.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/application/modules/ipxe/controllers/AuthController.php b/application/modules/ipxe/controllers/AuthController.php
index 4f13feb..12cdbc0 100644
--- a/application/modules/ipxe/controllers/AuthController.php
+++ b/application/modules/ipxe/controllers/AuthController.php
@@ -222,6 +222,17 @@ class Ipxe_AuthController extends Zend_Controller_Action
// $this->_redirect('/ipxe/resource/getvesamenuconfig/alpha/'.$alpha.'/error/'.$this->error);
}
+ public function localbootAction(){
+
+ header('Content-Type: text/plain');
+
+ $result = ".LOCALBOOT -1";
+
+ header("Content-Length: ".(strlen($result)));
+
+ echo $result;
+
+ }