Hello

I would like to install different versions of the same package with Puppet.

The packaging of those package is totally compatible and authorize to 
have both installed in the meantime.

# rpm -i foo-1.1 foo-2.3
works very well.

How declare this with Puppet?
I only found this workaround for the moment:

package {
    "foo-1":
       name   => "foo-1.1",
       ensure => "1.1-25";
    "foo-2":
       name   => "foo-2.3",
       ensure => "2.3-1";
}

Is there a better way?


-- 
Aurelien Degremont

--~--~---------~--~----~------------~-------~--~----~
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