2018-03-13 15:42:31 +00:00
|
|
|
--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
-- lsyncd.lua Live (Mirror) Syncing Demon
|
|
|
|
--
|
2018-03-14 08:57:49 +00:00
|
|
|
-- Wraps up globals of the mantle to set up the Lua
|
|
|
|
-- space for user scripts.
|
2018-03-13 15:42:31 +00:00
|
|
|
-- This must come as last mantle file.
|
|
|
|
--
|
|
|
|
-- License: GPLv2 (see COPYING) or any later version
|
|
|
|
-- Authors: Axel Kittenberger <axkibe@gmail.com>
|
|
|
|
--
|
|
|
|
--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
if mantle
|
|
|
|
then
|
|
|
|
lsyncd.log( 'Error', 'Lsyncd mantle already loaded' )
|
|
|
|
lsyncd.terminate( -1 )
|
|
|
|
end
|
|
|
|
|
2018-03-14 08:57:49 +00:00
|
|
|
-- Lets the core double check version identity with the mantle
|
2018-03-13 15:42:31 +00:00
|
|
|
mantle = '3.0.0-devel'
|
2018-03-14 08:57:49 +00:00
|
|
|
|
|
|
|
core = nil
|