Puppet Class: asterisk::dahdi
- Defined in:
- manifests/dahdi.pp
Summary
Requirements for the asterisk dahdi module to workOverview
DAHDI (Digium/Asterisk Hardware Device Interface) lets you connect your Asterisk PBX to a card, Digium and some other models, that bridges calls with the POTS.
TODO:
This class is possibly incomplete and it needs to be finished and tested.
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'manifests/dahdi.pp', line 9
class asterisk::dahdi {
package { [
'asterisk-dahdi',
'dahdi',
'dahdi-dkms', # dahdi autokompile ubuntu
'dahdi-linux', # dahdi linux kernel module
'dahdi-source', # dahdi sources
]:
ensure => installed
}
# User['asterisk'] {
# groups => 'dialout',
# }
}
|