mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-11-10 15:20:58 +00:00
23 lines
522 B
Lua
23 lines
522 B
Lua
--
|
|
-- version.lua from Lsyncd -- the Live (Mirror) Syncing Demon
|
|
--
|
|
--
|
|
-- Sets the lsyncd_version of the mantle,
|
|
-- this must come as last mantle file as other
|
|
-- mantle scripts check that global against accidental loading.
|
|
--
|
|
--
|
|
-- License: GPLv2 (see COPYING) or any later version
|
|
-- Authors: Axel Kittenberger <axkibe@gmail.com>
|
|
--
|
|
if lsyncd_version
|
|
then
|
|
print( 'Error, Lsyncd mantle already loaded' )
|
|
os.exit( -1 )
|
|
end
|
|
|
|
|
|
-- Lets the core double check version identity with the mantle
|
|
lsyncd_version = '3.0.0-devel'
|
|
|