search for: typedoc

Displaying 18 results from an estimated 18 matches for "typedoc".

Did you mean: typeloc
2007 Jan 24
3
Another ''found a bug'' problem - This time with user purging.
Ok, given the statement on the web page about unlesssystemuser under Resources ( http://reductivelabs.com/projects/puppet/documentation/typedocs.html#resources), I assume that users can be purged. However, when I attempt to do this with resources { user: purge => true, noop => true } and what I get is: err: Found a bug: private method ''split'' called for nil:NilClass. Both my resources and user statements are cont...
2007 Feb 28
5
Platforms supported by Puppets?
Hello, I would like to know on what platforms Puppet runs. I cannot seem to find the information on Puppet''s web site. Bcfg2 has it on it''s front page :-) I know there are .debs and .rpms, but are, for instance, Solaris, FreeBSD and AIX supported? Thanks. -- Guillaume Pratte Recherche et développement Révolution Linux Toutes les opinions et les prises de position
2006 Sep 04
7
package: ignores "source"; "provider" doesn''t work as advertised?
...b-4.2.el4.rf.i386.rpm" } [snip other code] } On fedora core 5, the ³source² is ignored: yum is used to pull the package from the upstream repos listed in yum.conf I tried to fix this, by setting the provider to rpm (details from here http://reductivelabs.com/projects/puppet/documentation/typedocs.html#package ), which I¹m hoping is a little more obedient: class thttpd { package { thttpd: version => "2.25b-4.2", provider => rpm, source => "http://dag.wieers.com/packages/thttpd/thttpd-2.25b-4.2.el4.rf.i386.rpm" } [snip] } But th...
2007 Mar 19
0
Provider features
...get rid of the messiness of testing for specific methods, and it''s an intro into a framework that will allow us to be very informative about how well a given provider functions. As a taste of what this generated documentation will look like, check this out: http://luke.madstop.com/typedocs.html#package I''ve only added feature definitions to the package type so far, but I hope to add a few more before I release 0.22.2 tomorrow. Features still aren''t completely functional -- there are a couple of tests I''d like them to be able to do that they can'&...
2007 Mar 29
0
Intended behavior of sourceselect => all
...iles/linux/test2" ], } /etc/test will only contain the content of the first file. Luke tested this as well with the same result. Is this the intended behavior? Is it a bug? With best regards, Martin Opstad Reistadbakk [1] http://www.reductivelabs.com/projects/puppet/reference/typedocs.html#file -- Martin Opstad Reistadbakk <martior@gmail.com> When I want to laugh, I''ll take Bob Saget thank you very much. _______________________________________________ Puppet-users mailing list Puppet-users@madstop.com https://mail.madstop.com/mailman/listinfo/puppet-users
2006 Aug 28
0
Provider documentation
...that it is now easy to document the different backends available to you. Puppet will automatically collect all of the docs for your providers and stick them in the autogenerated docs page. For instance, check out the package docs: http://reductivelabs.com/projects/puppet/documentation/ typedocs.html#package I''m also adding what the providers know about required binaries, so that should make things a bit clearer. Not all of the providers are as clear as they could be on what binaries are required, and binaries will sometimes be unqualified when the docs are generated, but...
2007 Feb 06
14
Unless in exec doesn''t seem to be honored on notify.
This was a fun one to track down... I was trying to use the append_if_no_such_line script from the wiki and it was working fine EXCEPT when I threw a notify at it. The notify appears to completely ignore both unless and onlyif within the exec for some reason. If I put the same test in the actual command line, it works fine. Example: unless => "/bin/grep -Fqe ''$line''
2007 Mar 30
4
Intended behavior of sourceselect => all [Proper]
...ontent of the first file. Luke tested this as well with the same result. Is this the intended behavior? Is it a bug? With best regards, Martin Opstad Reistadbakk [1] http://mail.madstop.com/pipermail/puppet-users/2007-March/002074.html [2] http://www.reductivelabs.com/projects/puppet/reference/typedocs.html#file -- Martin Opstad Reistadbakk <martior@gmail.com> When I want to laugh, I''ll take Bob Saget thank you very much. _______________________________________________ Puppet-users mailing list Puppet-users@madstop.com https://mail.madstop.com/mailman/listinfo/puppet-users
2007 Feb 14
9
managing multiple files
How can I express the following in puppet? $http_conf = "/etc/http/conf/httpd.conf" $vhosts_conf = "/etc/http/conf/vhosts.conf" @files = ("$httpd_conf", "$vhosts_conf") foreach f (@files) { file { "$f": owner => root, group => root, mode => 664, source => "puppet://$server/apache/$f", }
2007 Jan 05
3
ANNOUNCE: 0.22.0
...ality you consider critical, then you''ll get that functionality that much faster. The more custom development work I get, the faster Puppet develops. Have a great weekend everyone. 1 - http://gratr.rubyforge.org/ 2 - http://reductivelabs.com/projects/puppet/documentation/reference/ typedocs.html#resources 3 - http://reductivelabs.com/projects/puppet/documentation/reference/ configref.html#external_nodes -- I don''t always know what I''m talking about, but I''m always pretty much convinced that I''m right. -- musician Mojo Nixo...
2006 Dec 13
3
FreeBSD Ports, remotefile() problem
Howdy, Found out about this project while looking for via ONLamp''s FreeBSD build system article. After finding cfengine a tad arcane, this project seems like a good fit for my setup. I''m still at the tinkering phase, but I envision this thing bootstrapping and maintaining several FreeBSD installs which have different CPU''s and packages. The Good News:
2007 Jan 17
16
Cron jobs not removed when deleted from Manifest
I''m not sure if this has been posted previously, but I couldn''t find any information on it. I added a cron job via the cron type and it installed properly. Next, I removed the cron type from the manifest. The result was that, while the entry was no longer in the yaml file, the cron entry was not removed! Is this a bug, or the way that it is supposed to function? Thank you,
2007 Feb 14
15
Recursive home-dir does more than only files in repository
Hi all, Today I came across something that I consider a bug. Would like to hear your opinions. Facts: - Using 0.22.1 from Debian Unstable on a Debian Testing machine - Recipes work on other machines The recipe in question is: # Keep home-dirs in sync file { "/home/tim": recurse => true, source =>
2007 Feb 25
6
Wildcard expansion in remote files or recursion?
Hi all, [Please CC me in replies, I am not subscribed to this list.] First of all, thanks for puppet! It is a very nice tool and I''m in the (slow) process of using it to manage my new Xen-based virtual server farm with it. Most of the "simple" tasks worked well so far, and I may be able to add a few recipies to the Wiki when I find time to do so. However, is there any way
2007 Mar 13
11
N00B questions: How to dynamically set hostname in a config file . . .
Greetings - I''ve just started testing Puppet and have a couple of questions: 1. Is there a way to dynamically change a configuraion file that is sent to nodes? For example, I want to modify /etc/hosts to have the hostname and ip address set dynamically - the hosts file shoule look like: 12.34.56.78 node1.example.com 22.35.66.99 server1.example.com But I don''t want to
2006 Sep 21
30
Using multiple values for source, for platform/arch/host configs
Hi, in an attempt to simplify my configuration, and from a suggestion on IRC, I was thinking of using multiple values for file { source => [] }. Was just currious if anyone had any comments on this. Basically, I setup my file-server to use: <snip> [private] path /var/lib/puppet/files/private/%H allow * [shared] path /var/lib/puppet/files/shared allow *
2007 Feb 06
23
What I''m doing with Puppet
Hi all, Just reading through Luke''s interview on computerworld.com.au and I came across this statement: "This topic comes up on the list periodically, however, and most people are very tight-lipped about what they''re doing with Puppet." Being the chattermouth that I am, I''d like to take this opportunity to tell you all what we''re (that is, my
2007 Mar 08
16
CFengine into Puppet
I finally got my cfengine configs all objectified and separated into service-based configurations. But there are still many things that cfe can''t or won''t do very well, so I''m looking for a replacement. What about puppet? I am looking for something that I can use to manage services and applications, not hosts and files. It seems like puppet may have inherited some of