You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
405 B
14 lines
405 B
#!/bin/bash
|
|
#Bruno Thibodeau
|
|
#FreePBX 13
|
|
|
|
|
|
#Sortir les trunk et leur status
|
|
trunks=($(asterisk -rx "pjsip show registrations" ! grep Registered | awk '{print$3}'))
|
|
|
|
#Compter le nombre de trunk "Registered"
|
|
trstatus=($(echo ${trunks[*]} | grep -o 'Registered' | wc -l))
|
|
#echo $trstatus
|
|
|
|
#Si moins de deux trunks enregistrés, repartir le process
|
|
if (( $trstatus != 2 )) ; then $(which fwconsole) reload; fi |