2017-05-09 20:58:43 +02:00
|
|
|
#!/bin/sh
|
2022-04-06 14:28:31 +02:00
|
|
|
apt-get update && apt-get install -y ntp curl memcached haveged
|
2017-05-09 20:58:43 +02:00
|
|
|
curl https://files.freeswitch.org/repo/deb/debian/freeswitch_archive_g0.pub | apt-key add -
|
|
|
|
|
echo "deb http://files.freeswitch.org/repo/deb/freeswitch-1.6/ jessie main" > /etc/apt/sources.list.d/freeswitch.list
|
|
|
|
|
echo "deb http://files.freeswitch.org/repo/deb/debian-unstable/ jessie main" >> /etc/apt/sources.list.d/freeswitch.list
|
2022-04-06 14:28:31 +02:00
|
|
|
apt-get update && apt-get install -y freeswitch-meta-all freeswitch-all-dbg gdb
|