Letzte Woche => Endspurt!Montag den 29.01.07 geht das Buch in die Produktion. Bis dahin laeuft der Beta-Test noch in vollem Umfang. Bitte melden Sie Fehler! Siehe Beta-Test FAQ. Erscheinungstermin: 03.03.07. Das Buch wird auf dem Asterisk-Tag.org in Chemnitz vorgestellt und kann dort auch erworben werden. 10 Tage spaeter wird es im Buchhandel sein. Wer nicht in Chemnitz sein kann, sollte das Buch vorbestellen: Amazon oder direkt beim Verlag Asterisk-Schulungen und Consulting vom Autor dieses Buches finden Sie auf http://www.amooma.de. Naechste Asterisk-Schulung: 12.02. - 13.02.07 (noch 1 Platz frei) - Ach ja, ... wir suchen auch noch Asterisk Entwickler! => http://www.amooma.de/jobs/ |
Führt einen Shell-Befehl aus.
System(Befehl
)
Führt durch die C-Funktion system()
einen Befehl auf der Shell sh aus.
Diese Anwendung ist der TrySystem()
-Anwendung sehr ähnlich, abgesehen davon, dass sie -1 zurückliefert, falls sie den Systembefehl nicht ausführen kann, wohingegen die TrySystem()
-Anwendung stets 0 zurückliefert.
Setzt die Channelvariable SYSTEMSTATUS
auf SUCCESS
(erfolgreich ausgeführt), FAILURE
(konnte nicht ausgeführt werden) oder (undokumentiert) auf APPERROR
(Befehl ausgeführt aber mit Exit-Code ungleich 0).
exten => s,1,System(echo '${DATETIME} - ${CALLERID} - ${CHANNEL}' >> /var/log/asterisk/anrufe)
Siehe auch. Abschnitt 10.108, „TrySystem()
“
Als Alternative kann die Applikation Backticks()
oder Funktion BACKTICKS()
aus dem Modul app_backticks
[64] verwenden, mit denen man auch die Ausgabe des Befehls erhält.
Interner Hilfetext zu dieser Applikation in Asterisk 1.4:
-= Info about application 'System' =- [Synopsis] Execute a system command [Description] System(command): Executes a command by using system(). If the command fails, the console should report a fallthrough. Result of execution is returned in the SYSTEMSTATUS channel variable: FAILURE Could not execute the specified command SUCCESS Specified command successfully executed Old behaviour: If the command itself executes but is in error, and if there exists a priority n + 101, where 'n' is the priority of the current instance, then the channel will be setup to continue at that priority level. Note that this jump functionality has been deprecated and will only occur if the global priority jumping option is enabled in extensions.conf.
Differenz zum internen Hilfetext in Asterisk 1.2:
- keine -
© by Stefan Wintermeyer