Created
March 8, 2019 21:30
-
-
Save swchris/8f2b43c8fbe1c061ab7633cb251c928b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exten => _X.,1,Set(CURL_RESULT=${CURL(http://domain.com/test.txt)}) | |
same => n,GotoIf($["${CURL_RESULT}" = "1"]?result1:result2) | |
same => n(result1),Verbose(Result 1) | |
same => n,Hangup | |
same => n(result2),Verbose(Result other) | |
same => n,Hangup |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment