luci-0.9: merge r5753
authorJo-Philipp Wich <jow@openwrt.org>
Mon, 8 Mar 2010 02:17:39 +0000 (02:17 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Mon, 8 Mar 2010 02:17:39 +0000 (02:17 +0000)
modules/admin-full/luasrc/controller/admin/system.lua

index f86fa04..75f06f9 100644 (file)
@@ -25,7 +25,10 @@ function index()
        entry({"admin", "system", "passwd"}, form("admin_system/passwd"), i18n("a_s_changepw"), 20)
        entry({"admin", "system", "sshkeys"}, form("admin_system/sshkeys"), i18n("a_s_sshkeys"), 30)
        entry({"admin", "system", "processes"}, form("admin_system/processes"), i18n("process_head"), 45)
-       entry({"admin", "system", "fstab"}, cbi("admin_system/fstab"), i18n("a_s_fstab"), 50)
+
+       if nixio.fs.access("/etc/config/fstab") then
+               entry({"admin", "system", "fstab"}, cbi("admin_system/fstab"), i18n("a_s_fstab"), 50)
+       end
 
        if nixio.fs.access("/sys/class/leds") then
                entry({"admin", "system", "leds"}, cbi("admin_system/leds"), i18n("leds", "LEDs"), 60)