summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp32
1 files changed, 0 insertions, 32 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 3c17617..a0a7268 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -21,35 +21,3 @@ class mpd {
"puppet:///modules/mpd/mpd.conf" ],
}
}
-
-class mpd::client {
- package { [ 'mpc', 'ncmpc', 'ncmpcpp', 'mpdtoys' ]:
- ensure => installed,
- }
-}
-
-class mpd::all {
- include mpd
- include mpd::client
-
- user { 'mpd':
- ensure => present,
- home => '/var/lib/mpd',
- shell => '/bin/false',
- gid => 'audio',
- groups => [ 'audio', 'pulse', 'pulse-access' ],
- }
-
- # Ensure pulseaudio is running systemwide so both mpd and users
- # can share audio control.
- #
- # This could be managed elsewhere.
- file { '/etc/default/pulseaudio':
- ensure => present,
- owner => root,
- group => root,
- mode => 0644,
- notify => Service['mpd'],
- source => [ "puppet:///modules/mpd/pulseaudio" ],
- }
-}