aboutsummaryrefslogtreecommitdiff
path: root/personal_infra/puppet/modules/freeswitch/manifests
diff options
context:
space:
mode:
authoralex <alex@pdp7.net>2025-10-26 10:00:41 +0100
committeralexpdp7 <alex@corcoles.net>2025-10-26 12:14:27 +0100
commit184f1a0143945549bf173a4bab22563a3af769c6 (patch)
tree9b3027c49a14473f34efd83031562e647c14dc39 /personal_infra/puppet/modules/freeswitch/manifests
parent51d9cd16d8f625603e0eecad315431f62fb8841f (diff)
Migrate from freeswitch to flexisip
Diffstat (limited to 'personal_infra/puppet/modules/freeswitch/manifests')
-rw-r--r--personal_infra/puppet/modules/freeswitch/manifests/init.pp24
1 files changed, 0 insertions, 24 deletions
diff --git a/personal_infra/puppet/modules/freeswitch/manifests/init.pp b/personal_infra/puppet/modules/freeswitch/manifests/init.pp
deleted file mode 100644
index 2323e832..00000000
--- a/personal_infra/puppet/modules/freeswitch/manifests/init.pp
+++ /dev/null
@@ -1,24 +0,0 @@
-class freeswitch($freeswitch_password, $freeswitch_address, $freeswitch_rtp_start_port, $freeswitch_rtp_end_port) {
- package {'okay-release':
- source => 'http://repo.okay.com.mx/centos/9/x86_64/release/okay-release-1-10.el9.noarch.rpm',
- }
- ->
- package {['freeswitch-config-vanilla', 'freeswitch-systemd', 'freeswitch-sounds-en-us-callie-all']:}
- ->
- service {'freeswitch':
- enable => true,
- ensure => running,
- }
-
- file {'/etc/freeswitch/vars.xml':
- content => template('freeswitch/vars.xml'),
- require => Package['freeswitch-config-vanilla'],
- notify => Service['freeswitch'],
- }
-
- file {'/etc/freeswitch/autoload_configs/switch.conf.xml':
- content => template('freeswitch/switch.conf.xml'),
- require => Package['freeswitch-config-vanilla'],
- notify => Service['freeswitch'],
- }
-}