Skip to content

Instantly share code, notes, and snippets.

@moteus
Last active December 14, 2016 11:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save moteus/583d73bf528698f0824d6ff25b5e2f02 to your computer and use it in GitHub Desktop.
Save moteus/583d73bf528698f0824d6ff25b5e2f02 to your computer and use it in GitHub Desktop.
FusionPBX service control script
-- File to conrol FusionPBX Lua services/monitors
-- @usage:
-- # stop `call_flow_subscribe`
-- fs_cli -x "lua fsc.lua flow shutdown"
local destination = assert(argv[1])
local command = assert(argv[2])
local event = freeswitch.Event("CUSTOM", "fusion::" .. destination .. "::" .. command);
event:fire()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment