From edde14cc76a61813feaf654df04594cf4a186702 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Wed, 17 Jul 2013 14:16:24 +0000 Subject: [PATCH] Install Asterisk sounds In addition to installing Asterisk itself, we want to install some sound packages. This includes a large set of prompts, as well as some music on hold files. Change-Id: I197079cb2398f97ae82abf38a18d5cb8c377b5bc --- modules/asterisk/manifests/init.pp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/asterisk/manifests/init.pp b/modules/asterisk/manifests/init.pp index b77a4cf286..c7fe8b62ec 100644 --- a/modules/asterisk/manifests/init.pp +++ b/modules/asterisk/manifests/init.pp @@ -36,4 +36,14 @@ class asterisk ( ensure => present, require => Yumrepo['asterisk11'], } + + package { 'asterisk-sounds-moh-opsound-ulaw' : + ensure => present, + require => Yumrepo['asteriskcurrent'], + } + + package { 'asterisk-sounds-core-en-ulaw' : + ensure => present, + require => Yumrepo['asteriskcurrent'], + } }