diff options
author | Michael Neves | 2012-06-27 17:51:04 +0200 |
---|---|---|
committer | Michael Neves | 2012-06-27 17:51:04 +0200 |
commit | 8141f2e320c724908d64fae08ad7611bb028db72 (patch) | |
tree | 81287245bad1bc8e24737e58d849cd643cd79ed6 | |
parent | ipxe resourcecontroller add bootSystem Function (diff) | |
download | pbs2-8141f2e320c724908d64fae08ad7611bb028db72.tar.gz pbs2-8141f2e320c724908d64fae08ad7611bb028db72.tar.xz pbs2-8141f2e320c724908d64fae08ad7611bb028db72.zip |
ipxe resourcecontroller add bootSystem Function
-rw-r--r-- | application/modules/ipxe/controllers/ResourceController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/modules/ipxe/controllers/ResourceController.php b/application/modules/ipxe/controllers/ResourceController.php index ce1de6e..ffa2ae8 100644 --- a/application/modules/ipxe/controllers/ResourceController.php +++ b/application/modules/ipxe/controllers/ResourceController.php @@ -209,7 +209,7 @@ class Ipxe_ResourceController extends Zend_Controller_Action { } } - public function bootSystem() { + public function bootsystemAction() { $bootmenuntryID = $this->_request->getParam('bme'); @@ -241,7 +241,7 @@ class Ipxe_ResourceController extends Zend_Controller_Action { }else{ $result .= "imgargs kernel alpha=".$this->session->getAlphasessionID()."file=$this->httpmode://$this->host/c/".$this->session->getAlphasessionID()."/default.tgz ".$bme->getKclappend(); } - $result .= "boot"; + $result .= "boot"; } else { $result .= "chain http://".$_SERVER['HTTP_HOST']."/ipxe/vesamenu.c32 http://".$_SERVER['HTTP_HOST']."/ipxe/resource/getvesamenuconfig/serialnumber/$serialnumber/mac/$mac/error/session\n"; |