diff options
author | Simon Rettberg | 2019-03-19 16:28:05 +0100 |
---|---|---|
committer | Simon Rettberg | 2019-03-19 16:28:05 +0100 |
commit | 2c52f6fd139a83a38eba51a2bd3ab941c2343a6d (patch) | |
tree | 48a38daf82395f784746dc48030e660fd4b7a658 /modules-available/serversetup-bwlp-ipxe/inc/pxelinux.inc.php | |
parent | [statistics] Show error message if BIOS info fetching fails (diff) | |
download | slx-admin-2c52f6fd139a83a38eba51a2bd3ab941c2343a6d.tar.gz slx-admin-2c52f6fd139a83a38eba51a2bd3ab941c2343a6d.tar.xz slx-admin-2c52f6fd139a83a38eba51a2bd3ab941c2343a6d.zip |
[serversetup-bwlp-ipxe] Fix localboot detection for PXELinux import
Diffstat (limited to 'modules-available/serversetup-bwlp-ipxe/inc/pxelinux.inc.php')
-rw-r--r-- | modules-available/serversetup-bwlp-ipxe/inc/pxelinux.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules-available/serversetup-bwlp-ipxe/inc/pxelinux.inc.php b/modules-available/serversetup-bwlp-ipxe/inc/pxelinux.inc.php index 82e36afc..a3826c2e 100644 --- a/modules-available/serversetup-bwlp-ipxe/inc/pxelinux.inc.php +++ b/modules-available/serversetup-bwlp-ipxe/inc/pxelinux.inc.php @@ -255,9 +255,9 @@ class PxeSection */ public $isDisabled = false; /** - * @var int Value of the LOCALBOOT field + * @var int|false Value of the LOCALBOOT field, false if not set */ - public $localBoot; + public $localBoot = false; /** * @var string hotkey to trigger item. Only valid after calling mangle() */ |