summaryrefslogtreecommitdiffstats
path: root/modules/main.inc.php
diff options
context:
space:
mode:
authorSimon Rettberg2013-11-16 16:32:43 +0100
committerSimon Rettberg2013-11-16 16:32:43 +0100
commit8102576e930a839540c0e8b2c9e18fdf37d30b24 (patch)
tree60248ead9b0221c38232ae1928f87595ae04cbf8 /modules/main.inc.php
parentFixed two stupid messups (diff)
downloadslx-admin-8102576e930a839540c0e8b2c9e18fdf37d30b24.tar.gz
slx-admin-8102576e930a839540c0e8b2c9e18fdf37d30b24.tar.xz
slx-admin-8102576e930a839540c0e8b2c9e18fdf37d30b24.zip
Notify about missing options/files/actions on dashboard
Diffstat (limited to 'modules/main.inc.php')
-rw-r--r--modules/main.inc.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/main.inc.php b/modules/main.inc.php
index 31aef55e..24f519c6 100644
--- a/modules/main.inc.php
+++ b/modules/main.inc.php
@@ -20,6 +20,8 @@ function render_module()
if (preg_match("#inet $last/\d+.*scope#", $ip)) $ipxe = false;
}
}
- Render::addTemplate('page-main', array('user' => User::getName(), 'ipxe' => $ipxe));
+ $sysconfig = !file_exists(CONFIG_HTTP_DIR . '/default/config.tgz');
+ $minilinux = !file_exists(CONFIG_HTTP_DIR . '/default/kernel') || !file_exists(CONFIG_HTTP_DIR . '/default/initramfs-stage31') || !file_exists(CONFIG_HTTP_DIR . '/default/stage32.sqfs');
+ Render::addTemplate('page-main', array('user' => User::getName(), 'ipxe' => $ipxe, 'sysconfig' => $sysconfig, 'minilinux' => $minilinux));
}