Skip to content

Instantly share code, notes, and snippets.

@islander
Created November 18, 2015 04:30
Show Gist options
  • Select an option

  • Save islander/e85e0f9bbef5caecec39 to your computer and use it in GitHub Desktop.

Select an option

Save islander/e85e0f9bbef5caecec39 to your computer and use it in GitHub Desktop.
Fix russian language voicemail prompts for asterisk 11 in Ubuntu 14.04
#!/bin/sh
SOUNDS_DIR="/usr/share/asterisk/sounds/ru"
mkdir -p ${SOUNDS_DIR}
wget -q --no-check-certificate https://github.com/pbxware/asterisk-sounds/tarball/master -O- \
| tar xzv --strip-components 1 -C ${SOUNDS_DIR}
wget -q --no-check-certificate https://github.com/pbxware/asterisk-sounds-additional/tarball/master -O- \
| tar xzv --strip-components 1 -C ${SOUNDS_DIR}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment