53c750bd49
git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@4036 af16638f-c34d-0410-8cfa-b39d5352b314
23 lines
227 B
Bash
23 lines
227 B
Bash
#!/bin/bash
|
|
|
|
# Create 100 users.
|
|
for i in {34380..34479}
|
|
do
|
|
echo "
|
|
|
|
[$i]
|
|
type=friend
|
|
username=$i
|
|
insecure=very
|
|
qualify=no
|
|
nat=yes
|
|
host=dynamic
|
|
canreinvite=no
|
|
context=bbb-voip
|
|
disallow=all
|
|
allow=ulaw
|
|
" >> bbb_sip.conf
|
|
done
|
|
|
|
|