Skip to content

Instantly share code, notes, and snippets.

@hpherzog
Last active December 25, 2015 18:29
Show Gist options
  • Save hpherzog/7020507 to your computer and use it in GitHub Desktop.
Save hpherzog/7020507 to your computer and use it in GitHub Desktop.
Install kamailio on debian wheezy
#!/bin/sh
(cat <<-SRC
# kamailio
# http://www.kamailio.org/wiki/packages/debs
deb http://deb.kamailio.org/kamailio wheezy main
deb-src http://deb.kamailio.org/kamailio wheezy main
SRC
) > /etc/apt/sources.list.d/kamailio.list
cd /tmp
wget http://deb.kamailio.org/kamailiodebkey.gpg
apt-key add kamailiodebkey.gpg
apt-get update
apt-get -y install \
kamailio
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment