mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-27 22:50:42 +00:00 
			
		
		
		
	Install a hook script for DAHDI to register new spans with Asterisk automatically by running: asterisk -rx 'dahdi create channel FIRST LAST' Review: https://reviewboard.asterisk.org/r/3157/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@417863 65c4cc65-6c06-0410-ace0-fbb531ad65f3
		
			
				
	
	
		
			33 lines
		
	
	
		
			808 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			808 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #! /bin/sh
 | |
| 
 | |
| # This script is intended to be called from
 | |
| # /usr/share/dahdi/dahdi_span_config, which is is typically called from
 | |
| # a udev hook script.
 | |
| #
 | |
| # Environment is set in
 | |
| # http://git.asterisk.org/gitweb/?p=dahdi/tools.git;a=blob;f=hotplug/dahdi_span_config
 | |
| 
 | |
| if [ "$ACTION" != 'add' ]; then
 | |
| 	# Nothing to do here
 | |
| 	exit 0
 | |
| fi
 | |
| 
 | |
| # Add to asterisk
 | |
| asterisk -rx "dahdi create channels $BASECHAN $ENDCHAN"
 | |
| #! /bin/sh
 | |
| 
 | |
| # This script is intended to be called from
 | |
| # /usr/share/dahdi/dahdi_span_config, which is is typically called from
 | |
| # a udev hook script.
 | |
| #
 | |
| # Environment is set in
 | |
| # http://git.asterisk.org/gitweb/?p=dahdi/tools.git;a=blob;f=hotplug/dahdi_span_config
 | |
| 
 | |
| if [ "$ACTION" != 'add' ]; then
 | |
| 	# Nothing to do here
 | |
| 	exit 0
 | |
| fi
 | |
| 
 | |
| # Add to asterisk
 | |
| asterisk -rx "dahdi create channels $BASECHAN $ENDCHAN"
 |