Hello,

> there any reason not to configure debian alternatives this way?
> 
> file {
>   "/etc/alternatives/java":
>     ensure => "/usr/lib/jvm/java-6-sun/jre/bin/java";
> }

I do the same thing this way:

exec { "update-java-alternatives --set java-6-sun":
  unless => 'test $(readlink /etc/alternatives/java) == 
"/usr/lib/jvm/java-6-sun/jre/bin/java"',
  require => Package["sun-java6-bin"],
}

But for alternatives other than java, it probably is fine to do
as you describe.

Marc



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to