similar to: notice: No client; expanding ''...%H'' with local host

Displaying 20 results from an estimated 2000 matches similar to: "notice: No client; expanding ''...%H'' with local host"

2006 Sep 28
10
What does "State group failed" mean?
One one of my new vmware guests... puppetd -v spits out a bunch of err & warnings about "State group failed"... what does this mean? <snip> info: Caching configuration at /var/lib/puppet/localconfig.yaml err: Could not create root: Could not find a default provider for group warning: file=/etc/yum.repos.d/: State group failed: Could not find a default provider for group
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,
2006 Oct 16
1
Question regarding ''tidy'' type
Hello all, I am trying to use the tidy type to clean up a directory that I use for running scripts via puppet. My relevant manifest looks like: tidy { "/root/.puppet/" : age => ''30D'', path => ''/root/.puppet/'', recurse => true, rmdirs => true, type => atime, } However, when I run puppet it
2006 Dec 11
5
mysql issue
I am using the following command: mysql -u cgalliance -p cgatesting < cgavb3.gz I then type in the correct password and i get this returned: ERROR at line 1: Unknown command '\'. Any ideas? -- My "Foundation" verse: Isa 54:17 No weapon that is formed against thee shall prosper; and every tongue that shall rise against thee in judgment thou shalt condemn. This is the
2007 Jan 31
7
Report usage...
Hi, I''ve setup my systems to do reporting as explained in https:// reductivelabs.com/cgi-bin/puppet.cgi/wiki/ReportsAndReporting, with tagmail defined as one of the report types - but I do not recieve any mail at all. I''ve configured a tagmail.conf file like this: all: root@localhost But the documentation mentions three options, namely sendmail, reportfrom,
2006 Oct 29
1
warning: Deprecation notice: Resource references should now be capitalized?
Puppet 0.22.0 is complaining with "warning: Deprecation notice: Resource references should now be capitalized on line 22 in file /etc/ puppet/manifests/classes/snmp.pp". <snip> remotefile { "/etc/snmp/snmpd.conf": mode => 444, source => "system/snmp/snmpd.conf", notify => service[snmpd] # this is
2009 Nov 28
1
Window can't see Linux share
I have tried every possible configuration suggestion I have found on the net, but still can't get my windows PC's to see *nix shares (running Kubuntu 9.04 and Samba 3.3.2 with a Gadmin-Samba GUI 0.2.7) and Win2000 and WinXP. The *nix box can see and use the shares from the various W-boxes, but not visaa-versa. Here is my smb.conf: [global] netbios name = Mercury1 server string = Samba
2007 Sep 12
6
Puppet with Mongrel
Hi, I have just successfully configured Puppet to run with Mongrel, and would like to update the documentation with what I''ve learned. However, since I''m not an expert with these things, I thought I''d share with the list before updating the wiki. So here''s what I''d change: + Remove this picture:
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 *
2006 Dec 03
12
Problem with user type on 0.20.1... uses group "absent"
Hi, I''m running into a problem with the user type with puppet 0.20.1... this worked before with 0.19.x at least, not sure about 0.20. But I''ve got adduser.pp: <snip> define adduser($uid, $gid, $groups="users", $membership="minimum") { group { $name: gid => $gid, allowdupe => false, ensure
2007 Feb 15
5
Problem with iptables && ensure => running
I''ve been seeing this for a long time now... Got a class like: <snip> class iptables { package { iptables: ensure => latest } service { iptables: enable => true, ensure => running } remotefile { "/etc/sysconfig/iptables": mode => 400, source
2009 Dec 03
6
One way Samba
I am running Samba 2:3.3.2 on a Kubuntu 9.04 Linux box. With the configuration file below the linux box can see and retrieve shared files on all 5 of my windows boxes. However, none of the windows boxes can see the linux shares as they are defined in the smb.conf below. The linux box shows up in the windows network neighborhood as Mercury1 but when I try to open it to show the shares I get the
2016 Sep 09
1
Announcing the R Documentation Task Force
cross-posting announcement to R-Announce, R-devel and R-package-devel. The R Consortium recently announced (https://www.r-consortium.org/news/blogs/2016/08/r-consortium-funds-three-projects-july) support of the R Documentation Task Force. The task force aims to design and implement the next generation documentation system for R. We aim to take the best from the many attempts to improve
2008 Jul 28
2
Rf_error crashes entire program.
I'm having a problem with the error and warning functions. I've tried this on multiple machine so I'm fairly sure it's not machine dependent and I've tried it on the latest versions 2.6.0-2.7.1. Whenever my program gets to an error or warning it crashes the entire program rather than throwing the error like it should. Here are the relevant bits. ... char const * const
2010 Nov 12
1
unloading compiled code.
I have a package that I'm developing that I need to unload the library. Long story short I figured out that the leaving the compiled code loaded lead to a segmentation fault, but unloading the code will fix it. I've read the documentation and it appears that there are several ways to do this? What is the popper accepted current standard for unloading compiled code? The options as I
2008 Aug 25
1
na.action does not return na.action element of lm object
I'm not sure if this is the official behavior but I would expect the na.action function applied to a lm object to return the na.action. Here is what I mean. > x<-0:10 > y<-x+rnorm(10) Warning message: In x + rnorm(10) : longer object length is not a multiple of shorter object length > y[5]<-NA > m<-lm(y~x) > m$na.action 5 5 attr(,"class") [1]
2007 May 02
3
the Surv function
Hi, I'm trying to do a simple survival analysis on some data, and I'm having the following problem (here's my code and the error message): out <- Surv(fup,event=status) Error in Surv(fup, event = status) : argument "time2" is missing, with no default >From reading the documentation, it seems that I should be able to simply write: Surv(time1, event) if my data is
2007 May 05
3
the ifelse function
Hi Everyone, I think I found a problem with the ifelse function: If the condition argument is NA, it treats it as true. Anyone agree or disagree with this? Jen -- Jennifer Dillon Doctoral Student Harvard Biostatistics Room 414B, Building 1 [[alternative HTML version deleted]]
2016 Sep 30
1
[ANNOUNCE] xf86-input-libinput 0.20.0
Most important fix is the use of input_lock() instead of the old SIGIO stuff to handle the input thread in server 1.19. This version now supports tablet pads and exposes properties for changing the tap button mapping and the rotation. Eric Engestrom (1): man: fix a couple typos Keith Packard (2): Use xf86AddEnabledDevice instead of AddEnabledDevice when threaded [v3]
2003 Aug 13
1
Request to mailing list freebsd-security rejected
Umm. First of all, I *AM* a member of this list, unless someone else unsubcribed me. If so, please put me back on. I've gone through my archives and I am very clearly subscribed to the list. The monthly freebsd.org mailing list memberships reminder tells me I am. List Password // URL ---- --------