Initial version of daap module.
This commit is contained in:
parent
62ee08dcec
commit
73d68fc6ac
1 changed files with 18 additions and 0 deletions
18
daap/manifests/init.pp
Normal file
18
daap/manifests/init.pp
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
|
||||||
|
# Install daap server.
|
||||||
|
#
|
||||||
|
class daap::server {
|
||||||
|
|
||||||
|
include avahi::daemon
|
||||||
|
|
||||||
|
package { "mt-daapd":
|
||||||
|
ensure => installed,
|
||||||
|
}
|
||||||
|
|
||||||
|
service { "mt-daapd":
|
||||||
|
ensure => running,
|
||||||
|
enable => true,
|
||||||
|
require => Package["mt-daapd"],
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue