* hernan <hernan.silberman at gmail.com> [2010/06/30 17:02]:
> I'm building a puppet manifest for an Ubuntu machine that needs to
> have both of these on it:
> 
>   package { "memcached":
>     provider => gem,
>     ensure => "0.18.0"
>   }
> 
>   package { "memcached":
>     provider => apt,
>     ensure => installed
>   }

I think this should work:

  package { "memcached-gem":
    name => "memcached",
    provider => gem,
    ensure => "0.18.0"
  }

  package { "memcached-apt":
    name => "memcached",
    provider => apt,
    ensure => installed
  }

-- 
Time passes, but love remains.

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-us...@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