diablo wrote:
> Hi,
>
> I installed puppet on a range of OpenSuSE 11.1 servers and I have a
> very strange problem. I didn't find anywere on the website or on the
> wiki, how I can set a default service provider. My problem is that
> freebsd is used instead of redhat and the init scripts are not started
> properly. Here is a snippet from the debug messages I collected from
> the console.
Define the default provider in the class with the largest scope, i.e. in
site.pp.
site.pp:
case $operatingsystem {
Solaris: { Package { provider => blastwave } },
redhat: { Package { provider => yum } }
}
Junhao