On Fri, Feb 25, 2011 at 4:54 AM, Gilles <[email protected]> wrote: > Is there a way to launch a script asynchronously, so that Asterisk > proceeds to the next step immediately, and the script will then wait > 10 seconds so that the channel is available again?
In Perl, the line would be: fork and exit; I'm sure there's an equivalent in lua, but the basic idea is that you want to fork a child, which takes over. When the parent process dies, control returns to the dialplan. -- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- New to Asterisk? Join us for a live introductory webinar every Thurs: http://www.asterisk.org/hello asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
