summaryrefslogtreecommitdiffhomepage
path: root/libs/sys/luasrc
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2008-10-03 14:05:53 +0000
committerJo-Philipp Wich <jow@openwrt.org>2008-10-03 14:05:53 +0000
commit84b98f7e8c4178f387ea18bca18c2f03101d2783 (patch)
tree3d01a5ec197c06d4e8c88a19e506f9431a191b59 /libs/sys/luasrc
parente36ee0519658db4de8e914621a060349b4f04bc1 (diff)
* luci/lib/sys: fix inline documentation of sys.init
Diffstat (limited to 'libs/sys/luasrc')
-rw-r--r--libs/sys/luasrc/sys.lua12
1 files changed, 8 insertions, 4 deletions
diff --git a/libs/sys/luasrc/sys.lua b/libs/sys/luasrc/sys.lua
index 230201d82..ec35e5546 100644
--- a/libs/sys/luasrc/sys.lua
+++ b/libs/sys/luasrc/sys.lua
@@ -547,7 +547,8 @@ function init.names()
end
--- Test whether the given init script is enabled
--- @return Boolean indicating whether init is enabled
+-- @param name Name of the init script
+-- @return Boolean indicating whether init is enabled
function init.enabled(name)
if luci.fs.access(init.dir..name) then
return ( call(init.dir..name.." enabled") == 0 )
@@ -556,7 +557,8 @@ function init.enabled(name)
end
--- Get the index of he given init script
--- @return Numeric index value
+-- @param name Name of the init script
+-- @return Numeric index value
function init.index(name)
if luci.fs.access(init.dir..name) then
return call("source "..init.dir..name.." && exit $START")
@@ -564,7 +566,8 @@ function init.index(name)
end
--- Enable the given init script
--- @return Boolean indicating success
+-- @param name Name of the init script
+-- @return Boolean indicating success
function init.enable(name)
if luci.fs.access(init.dir..name) then
return ( call(init.dir..name.." enable") == 0 )
@@ -572,7 +575,8 @@ function init.enable(name)
end
--- Disable the given init script
--- @return Boolean indicating success
+-- @param name Name of the init script
+-- @return Boolean indicating success
function init.disable(name)
if luci.fs.access(init.dir..name) then
return ( call(init.dir..name.." disable") == 0 )