summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Neves2012-06-28 15:48:53 +0200
committerMichael Neves2012-06-28 15:48:53 +0200
commitf8454b8652d8796915e2a03d1f00506a7ccd7fa5 (patch)
tree14a5ecbf197eebc3d15b89092e5419e78aaa5d70
parentipxe fehlermeldung (diff)
downloadpbs2-f8454b8652d8796915e2a03d1f00506a7ccd7fa5.tar.gz
pbs2-f8454b8652d8796915e2a03d1f00506a7ccd7fa5.tar.xz
pbs2-f8454b8652d8796915e2a03d1f00506a7ccd7fa5.zip
ipxe fehlermeldung
-rw-r--r--application/modules/ipxe/controllers/ResourceController.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/application/modules/ipxe/controllers/ResourceController.php b/application/modules/ipxe/controllers/ResourceController.php
index ccda2b8..cc51f31 100644
--- a/application/modules/ipxe/controllers/ResourceController.php
+++ b/application/modules/ipxe/controllers/ResourceController.php
@@ -291,16 +291,16 @@ class Ipxe_ResourceController extends Zend_Controller_Action {
$result .= "imgtrust --permanent\n";
$result .= "kernel --name kernel $this->httpmode://$this->host/ipxe/resource/getkernel/alpha/".$this->session->getAlphasessionID()."\n";
- $result .= "imgverify kernel $this->httpmode://$this->host/ipxe/resource/getsignature/file/kernel/alpha/".$this->session->getAlphasessionID()."\n";
+ $result .= "imgverify kernel $this->httpmode://$this->host/ipxe/resource/getsignature/file/kernel/alpha/".$this->session->getAlphasessionID()." || exit\n";
$result .= "initrd --name initramfs $this->httpmode://$this->host/ipxe/resource/getinitramfs/alpha/".$this->session->getAlphasessionID()."\n";
- $result .= "imgverify initramfs $this->httpmode://$this->host/ipxe/resource/getsignature/file/initramfs/alpha/".$this->session->getAlphasessionID()."\n";
+ $result .= "imgverify initramfs $this->httpmode://$this->host/ipxe/resource/getsignature/file/initramfs/alpha/".$this->session->getAlphasessionID()." || exit\n";
if($bootmenuentry->getKcl() && $kcl != null){
$result .= "imgargs kernel $kcl alpha=".$this->session->getAlphasessionID()." file=$this->httpmode://$this->host/c/".$this->session->getAlphasessionID()."/default.tgz ".$bootmenuentry->getKclappend()."\n";
}else{
$result .= "imgargs kernel alpha=".$this->session->getAlphasessionID()." file=$this->httpmode://$this->host/c/".$this->session->getAlphasessionID()."/default.tgz ".$bootmenuentry->getKclappend()."\n";
}
- $result .= "boot || exit";
+ $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";