[asterisk-bugs] [Asterisk 0016905]: system() dialplan function does not work
Asterisk Bug Tracker
noreply at bugs.digium.com
Sun Feb 28 22:51:24 CST 2010
A NOTE has been added to this issue.
======================================================================
https://issues.asterisk.org/view.php?id=16905
======================================================================
Reported By: ip-rob
Assigned To:
======================================================================
Project: Asterisk
Issue ID: 16905
Category: Applications/app_system
Reproducibility: always
Severity: major
Priority: normal
Status: new
Asterisk Version: 1.6.2.4
JIRA:
Regression: No
Reviewboard Link:
SVN Branch (only for SVN checkouts, not tarball releases): N/A
SVN Revision (number only!):
Request Review:
======================================================================
Date Submitted: 2010-02-25 14:51 CST
Last Modified: 2010-02-28 22:51 CST
======================================================================
Summary: system() dialplan function does not work
Description:
You can put any script passed as an argument to the system() command in a
dialplan and it will not execute. In my example, I created the following
script:
#!/bin/bash
ls -l /tmp > /usr/src/temp.txt
in file /usr/src/temp.sh. temp.sh is 755 so any user can execute it. In
the dialplan I put a simple call to system using this dialplan
exten => 101,1,Set(__FROM_DID=${EXTEN})
exten => 101,n,system(/usr/src/temp.sh)
The asterisk log shows
[Feb 25 15:12:11] VERBOSE[23375] pbx.c: -- Executing
[101 at from-trunk:1] ^[[1;36mSet^[[0m("^[[1;35mSIP/DefaultOut-00000006^[[0m",
"^[[1;35m__FROM_DID=[Feb 25 15:12:11] VERBOSE[23375] pbx.c: --
Executing [101 at from-trunk:2]
^[[1;36mSystem^[[0m("^[[1;35mSIP/DefaultOut-00000006^[[0m",
"^[[1;35m/usr/src/temp.sh^[[0m") in new stack
The script does not execute as there is no output file /usr/src/temp.txt.
Executing the command from the asterisk command line as
"!/usr/src/temp.sh" DOES work without issue.
======================================================================
----------------------------------------------------------------------
(0118669) tilghman (administrator) - 2010-02-28 22:51
https://issues.asterisk.org/view.php?id=16905#c118669
----------------------------------------------------------------------
What makes you think it isn't executing? Perhaps you should try the same
thing you tried before and append output to a logfile in both cases, and
check that. From what you have here, I have no indication of any failure.
Issue History
Date Modified Username Field Change
======================================================================
2010-02-28 22:51 tilghman Note Added: 0118669
======================================================================
More information about the asterisk-bugs
mailing list