search for: remotefil

Displaying 20 results from an estimated 59 matches for "remotefil".

Did you mean: remotefile
2006 Nov 06
2
problem with remotefile definition
Hi, I''m exploring Puppet and have hit a rather weird problem. The puppetmaster server is running CentOS4, fully updated, with puppet installed from the dlutter RPM repo, version 0.20.0-1.el4. I tried adding the remotefile function definition from http://reductivelabs.com/projects/puppet/documentation/installation.html in /etc/puppet/manifests/utils/remotefile.pp but when I start puppetmasterd I get: riffraff:brown /etc/puppet/manifests/utils $ sudo /usr/sbin/puppetmasterd --verbose info: Starting server for Puppe...
2007 Mar 07
8
Writing definitions to support changing defaults
What is the right way to write definition so that defaults can be overriden? $puppetdir = "puppet://$server/files" define remotefile($source, $owner = "root", $group = "root", $mode = 0644, $backup = false, $recurse = false) { file { $name: mode => $mode, owner => $owner, group => $group, backup => $backup, recurse => $recurse, source => &...
2006 Dec 18
1
$name causes weird behavior
I tried using $name in this manner: remotefile { "/etc/auto_direct.local": mode => 644, source => "solall/$name" } (The remotefile function is handy, BTW) When I use $name here, instead of specifying the actual path to the file (solall/etc/auto_direct.local), puppetd ends up making /etc/auto_direct.l...
2006 Dec 21
7
Overriding types?
"Service and class definitions are scoped just as variable assignments are." But what about types? Here''s an example: class solserver inherits server { remotefile { "/etc/shadow": mode => 400, group => staff, source => "solall/etc/shadow.server" } Is it possible to just override the "/etc/shadow" definition for some nodes? It certainly doesn''t work to just redefine the remotefile["/et...
2007 Jan 10
9
Definition specialization
There was a discussion a while ago about adding inheritance to definitions. There is a need for a way to specialize parameters while allowing passing other options. This comes up with remotefile where it would be nice to have a default server location but not specify all the parameters (and their defaults) in the definition. Was there a change to the syntax? Is there a way to accomplish this? - Ian
2007 Mar 16
0
My updated remotefile
I recently update my remotefile definitions (others might have already done so or have been using a better one than mine). I added an ensure parameter so I could do overrides using remotefile rather than the underlying file: define remotefile($owner = root, $ignore = ".svn", $group = root, $mode = 644, $source, $b...
2008 Jan 22
2
Could not set file on ensure: undefined method `[]'' for nil:NilClass
Hi, I had a working puppet setup using version 0.22 until the ruby security patch bit me. I tried upgrading server and clients to 0.24.1 however my old manifests don''t seem to work anymore. When I run puppetd on the client I see lots of messages like: err: //Node[waterbuck]/yumupdater/Remotefile[/etc/cron.hourly/yumupdater]/File[/etc/cron.hourly/yumupdater]/ensure: change from absent to file failed: Could not set file on ensure: undefined method `[]'' for nil:NilClass at /raid/puppet/manifests/definitions/remotefile.pp:15 The remotefile.pp looks ok to me: ----------- remotefile...
2007 Feb 15
2
use of $name
Hello The following chunk is within a class definition. ${name} is being exchanged with an empty string: remotefile { "/${server_xml}": owner => tomcat, group => tomcat, mode => 600, source => "${ftoe_src_prefix_dev}${name}.jvm1" } However in the following chunk, lower down in the same class definition, ${name} is being exchanged with "/usr/local/to...
2006 Dec 13
3
FreeBSD Ports, remotefile() problem
...ckage { bash: source => "/usr/ports/packages/i386/All/bash-3.1.17.tbz", ensure => installed, subscribe => [''/etc/profile'',''/etc/profile.d/'',''/etc/bash/''] } remotefile{ "/etc/profile": mode => 664, source => "apps/bash/etc/profile" } remotefile { "/etc/profile.d/": mode => 664, source => "apps/bash/etc/profile.d/" }...
2007 Feb 10
1
Multipe file sources...
Hi, I''m trying to use several sources to pick from in a remotefile statement: remotefile { "/etc/sudoers": mode => 0440, source => [ "config/apps/sudo/sudoers.${host}", "config/apps/sudo/sudoers" ], sourceselect => first } But it doesn''t seem to work. I get an error like this: "File source /srv...
2007 Feb 15
4
Component/type defaults for 0.22.x
Has the component/type defaults syntax changed for 0.22.x? I have a component: <snip> define remotefile($owner=root, $group=root, $mode, $source, $backup=false, $recurse=false, $groupname="default") { file { $name: mode => $mode, owner => $owner, group => $group, backup => $backup, recurse => $r...
2007 Sep 04
1
Solaris ingores server variable
Hi everyone, I got a basic puppetmaster setup, which works well for Linux. I''ve setup a basic function: define remotefile($owner = root, $group = root, $mode, $source, $backup = false, $recurse = false) { file { $name: mode => $mode, owner => $owner, group => $group, backup => $backup, source => [ &...
2006 Aug 04
0
subscribed files sourced from puppet fileserver
So I have $base = "/opt/local/etc" remotefile { "$base/saslauthd.conf": source => "apps/saslauthd/saslauthd.conf", mode => 400, # This file contains special info owner => root; "$base/saslauthd.init": source => "apps/saslauthd/...
2007 Jan 25
4
Conditional exec
I am trying to write a definition that downloads and extracts a tar file if the destination directory does not exist. The tar file won''t change and does not need to be download and extracted if it changes. The definition I am using now is: define remote_tar($source, $directory) { remotefile { "/tmp/$name.tgz": source => $source, } exec { "tar-$name": command => "tar -xzf /tmp/$name.tgz", directory => $directory, creates => "$directory/$name", require => File["/tmp/$name.tgz&quo...
2006 Oct 19
8
puppet 0.20.0: updated language syntax doesn''t work?
Hi, I just upgraded to puppet 0.20.0 today after a short time playing with 0.19.3. The docs say to use the uppercase form for types but that seems to break for me. When I updated the remotefile function to use the new way, the puppet clients complain about objects not being found. For example: ----- OLD WAY (works, just with deprecations) ----- define remotefile (...) { file { $name : owner => $owner, source => "puppet://$server/$source" } } ---...
2007 May 25
18
services do not get restarted
...restart => true } on any changes in nrpe.cfg the files get synced on the puppet client and puppetd writes out the following messages when running in debug mode: info: Filebucket[/var/lib/puppet/clientbucket]: Adding /etc/nagios/nrpe.cfg(d74c3c576cbc9c400407f679af44ed0e) info: //base/nagios/remotefile[/etc/nagios/nrpe.cfg]/File[/etc/nagios/nrpe.cfg]: Filebucketed to puppet with sum d74c3c576cbc9c400407f679af44ed0e debug: //base/nagios/remotefile[/etc/nagios/nrpe.cfg]/File[/etc/nagios/nrpe.cfg]/checksum: Replacing /etc/nagios/nrpe.cfg checksum {md5}d74c3c576cbc9c400407f679af44ed0e with {md...
2007 Feb 09
2
Use of variables in defines...
...group => $name, mode => 755, require => User[$name] } file { "$home/.ssh": ensure => directory, owner => $name, group => $name, mode => 700, require => File[$home] } remotefile { "$home/.ssh/authorized_keys": source => "sshkeys/$name", mode => 600, owner => $name, group => $name, require => File[$home] } } I can call it with: systemuser { newusername: home => "/home...
2007 Jan 17
11
scope issue after upgrade
I just upgraded to 0.22.0 from 0.18.4 and I''m running into what I think are problems due to changes in scope rules. In my site.pp manifest, I have the following: import "classes/*" node nfsserver { include nfsserver } node webserver { include webserver } class cluster1_sites { website { "example.com": ...; "example2.com": ...; } } node
2007 Nov 01
1
New Client Problems
...ere not trusted: hostname was not match with the server certificate Any subsequent runnings of puppetd --test give the same error. puppet.myclient.com is a CNAME. When I pass the A record on the command line, I get a little further, but still see similar errors: err: //workstation/puppet-config/remotefile[/etc/sysconfig/puppet]/File[/etc/sysconfig/puppet]/source: Could not describe /files/puppet-config/puppet.sysconfig: Certificates were not trusted: hostname was not match with the server certificate info: //workstation/puppet-config/remotefile[/etc/sysconfig/puppet]/File[/etc/sysconfig/puppet]/sou...
2007 Jun 29
5
Installing a file only if a package is available
...mplains it doesn''t know how to install freenx. However I don''t want it to install freenx even if it would figure out how to do that. If freenx is not installed I just don''t want this class to have any net effect. -------------------------- class nx_clientkey { remotefile { "/var/lib/nxserver/home/.ssh/authorized_keys2": source => "os/$operatingsystem/nx/authorized_keys2", ensure => file, mode => 600 } remotefile { "/var/lib/nxserver/home/.ssh/default.id_dsa.pub":...