search for: creatingcustomtypes

Displaying 3 results from an estimated 3 matches for "creatingcustomtypes".

2007 May 16
1
writing and deploying custom types
...oblem with custom types that I create: I have changed the apt package provider such that it it uses fink on darwin operating systems to install packages. I copied the apt.rb to fink.rb and customized it accordingly. Now when I follow the documentation: http://reductivelabs.com/trac/puppet/wiki/CreatingCustomTypes I should deploy it in lib/puppet/type. This does not work at all, since puppet does not load or recognizes it as a package provider. When I put it in /usr/lib/ruby/site_ruby/1.8/puppet/provider/package/fink.rb I get an error: "Could not set present on ensure: undefined method `[]'...
2007 Jul 13
7
new puppet providers
I might have the terminology wrong, but how to a give new puppet providers to the puppet clients? I''m thinking a provider is the thing the puppet client uses to implement a task that the master has given it. Am I way off here? Mike B. ---------------------------------------------------------------- This message was sent using IMP, the Internet Messaging Program.
2007 Dec 06
1
order, managing one file and refreshonly
Hello! I''m quite newbie to puppet. I''ve got 3 questions: 1. I''ve noticed, that puppet apply defined classes/modules in specyfic order. I''ve got something like this im my configs: /etc/puppet/cf/manifests/site.pp: import "networks/*/site.pp" node generic_node { include "puppet" include "apt" include "debian" } ---