From e9e22aca73d27410572871ae2870c41b96b11a8a Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Mon, 25 May 2009 10:31:08 +0000 Subject: [PATCH] Fix: Mountpoints cannot be disabled --- modules/admin-full/luasrc/model/cbi/admin_system/fstab.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/admin-full/luasrc/model/cbi/admin_system/fstab.lua b/modules/admin-full/luasrc/model/cbi/admin_system/fstab.lua index 7873842f8..1e2a12fec 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_system/fstab.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_system/fstab.lua @@ -61,7 +61,7 @@ mount.anonymous = true mount.addremove = true mount.template = "cbi/tblsection" -mount:option(Flag, "enabled", translate("enable")) +mount:option(Flag, "enabled", translate("enable")).rmempty = false dev = mount:option(Value, "device", translate("device"), translate("a_s_fstab_device1")) for i, d in ipairs(devices) do dev:value(d, size[d] and "%s (%s MB)" % {d, size[d]}) @@ -77,7 +77,7 @@ swap.anonymous = true swap.addremove = true swap.template = "cbi/tblsection" -swap:option(Flag, "enabled", translate("enable")) +swap:option(Flag, "enabled", translate("enable")).rmempty = false dev = swap:option(Value, "device", translate("device"), translate("a_s_fstab_device1")) for i, d in ipairs(devices) do dev:value(d, size[d] and "%s (%s MB)" % {d, size[d]}) -- 2.25.1