Changed mythtv backend to run as user mythtv.

This commit is contained in:
Timo Mkinen 2010-10-08 19:21:12 +03:00
parent 2bfbe82367
commit 7aa19f89a9
2 changed files with 20 additions and 0 deletions

View file

@ -61,6 +61,16 @@ class mythtv::backend {
require => Package["mythtv-backend"],
}
file { "/etc/sysconfig/mythbackend":
ensure => present,
source => "puppet:///mythtv/mythbackend",
mode => 0644,
owner => root,
group => root,
notify => Service["mythbackend"],
require => Package["mythtv-backend"],
}
file { "/root/.mythtv":
ensure => "/etc/mythtv",
force => true,