moleflap/door/opendoor.lua

13 lines
139 B
Lua
Raw Normal View History

2010-02-25 08:37:50 +01:00
#!/usr/bin/env lua
require 'config'
require 'helper'
2010-02-25 08:37:50 +01:00
function open_door()
kill_stdio()
2010-02-25 08:37:50 +01:00
os.execute(config.open_cmd)
end
open_door()