Strange messages on 0.25.4.

136 views
Skip to first unread message

Nobuchika Tanaka

unread,
Feb 18, 2010, 10:25:42 PM2/18/10
to Puppet Users
Hi all.

I am testing 0.25.4 to upgrade from 0.23.2.
In testing, I found two strange messages on 0.25.4 which I have never
found on 0.24.3.
So could you tell me what these messages mean and how to fix them.

[Environment]
Puppetmasterd
-version : 0.25.4
-OS : Solaris10 10/09

Puppetd
-version : same as Puppetmasterd
-OS : same as Puppetmasterd

[Strange messages]
1.When Puppetd conneted Puppetmasterd initially, Puppetmasterd showed
message below.
Feb 19 11:01:09 puppetmasterd puppetmasterd[739]: [ID 702911
daemon.error] Could not resolve xxx.xxx.xxx.xxx: undefined method
`include?' for nil:NilClass

NIS is runnning on Puppetmasterd host.
So I think Puppetmasterd can resolve ip address <=> hostname...

2.When I ran puppetrun, Puppetmasterd showed message below.
Feb 19 11:04:23 puppetmasterd puppetmasterd[739]: [ID 702911
daemon.warning] Host is missing hostname and/or domain: puppetd

Every execution of puppetrun, Puppetmasterd showed this message.

Nobuchika Tanaka

Peter Meier

unread,
Feb 19, 2010, 4:57:13 AM2/19/10
to puppet...@googlegroups.com
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi

> 2.When I ran puppetrun, Puppetmasterd showed message below.
> Feb 19 11:04:23 puppetmasterd puppetmasterd[739]: [ID 702911
> daemon.warning] Host is missing hostname and/or domain: puppetd
>
> Every execution of puppetrun, Puppetmasterd showed this message.

what is your facter version?

cheers pete
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkt+YHgACgkQbwltcAfKi38VPgCeIXuAhudb097nieNYQt5tzY1E
+icAoIWUiA8xlgxnnMbOsGyG1NDXOxU2
=QEZv
-----END PGP SIGNATURE-----

Nobuchika Tanaka

unread,
Feb 21, 2010, 8:26:13 PM2/21/10
to Puppet Users
Hi Peter.

Thanak you for replying.

> what is your facter version?

My facter version is 1.5.7.

puppetmasterd# facter -v
1.5.7

Nobuchika Tanaka.

Peter Meier

unread,
Feb 22, 2010, 2:55:07 AM2/22/10
to puppet...@googlegroups.com
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi

> Thanak you for replying.


>
>> what is your facter version?
>
> My facter version is 1.5.7.

can you send a --debug --trace of your puppetd run? thanks.

cheers pete
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkuCOFoACgkQbwltcAfKi38ZrQCeJXjndxNvjTwf2VO3DfhnxUJA
JE4AnjSn4wMqBGZyVoMc6fKOdIvk628F
=tkDF
-----END PGP SIGNATURE-----

deet

unread,
Feb 22, 2010, 12:08:43 PM2/22/10
to Puppet Users
I ran into a similar situation maybe this will help.

I just starated rolling out new puppet and ruby packages on Solaris
10.
Facter 1.5.7 (staying the same)
ruby 1.8.6.? -> 1.8.7 p249
puppet 0.25.1 -> 0.25.4

My initial tests of upgrading an existing puppetmaster and a few
nodes went fine. However when I add new nodes the cert exchange will
not occur unless the master has a hosts entry for the client and the
client has a hosts entry for the server (no network based name
resolution available).

However once the cert exchange is complete the master no longer needs
the clients host entry. I attributed the error messages/situation to
user error.

My old puppet bootstrap script basically ran the following after an
OS install via jumpstart.

puppetd --server X.X.X.X --onetime --no-daemonize

Then I would sign the cert and run the above command again. With new
ruby and puppet i'm getting this error message.

err: Could not retrieve catalog from remote server: undefined method
`closed?' for nil:NilClass

My work around was to populate the hosts file with a puppet entry and
remove the "--server X.X.X.X" flags from my boot strap script.
Additionally I had to ensure the client node has an entry in the
masters hosts file.

I still assume this is something I've brought on myself with my lack
of network name resolution. I'm just hoping the info helps the OP.

Derek.

Patrick (kc7zzv)

unread,
Feb 22, 2010, 2:44:20 PM2/22/10
to Puppet Users
On Feb 22, 9:08 am, deet <somew...@gmail.com> wrote:
>  My work around was to populate the hosts file with a puppet entry and
> remove the "--server X.X.X.X" flags from my boot strap script.
> Additionally I had to ensure the client node has an entry in the
> masters hosts file.
>
>  I still assume this is something I've brought on myself with my lack
> of network name resolution.  I'm just hoping the info helps the OP.
>
>   Derek.


Other people are having this trouble too including me. I just figured
that 0.25 was broken in ubuntu. More information at
http://projects.reductivelabs.com/issues/3083. I'm trying to figure
out the minimum DNS needed.

Did you add the FQDN of the server, the server's name, or both to the
hosts file on the client?

Did you add puppet, puppet.domain, or both to the client's hosts file?

Is the server's FQDN puppet or something else?

I'm hoping that if I can figure out what works for you, I'll have a
place to start.
-Patrick

deet

unread,
Feb 22, 2010, 3:37:48 PM2/22/10
to Puppet Users

> Did you add the FQDN of the server, the server's name, or both to the
> hosts file on the client?

Our hosts only have a "node" name as we don't have nis/ldap/dns for
network name resolution.

In this case the puppet master's hostname is "dev-puppet" and I did
not include that in the clients hostfile. The entry I used is like
this

(clients hosts file)
X.X.X.X puppet


And on the puppetmaster server I used the following notation for the
client's hosts entry. The real name of the client in this example is
"dev-sandbox" which is what I put in the puppetmasters hosts file.

(puppetmaster hosts file)
X.X.X.X dev-sandbox

Once the cert exchange is complete I can remove that hosts entry for
the client.

Does that help?

Patrick (kc7zzv)

unread,
Feb 22, 2010, 3:49:17 PM2/22/10
to Puppet Users
On Feb 22, 12:37 pm, deet <somew...@gmail.com> wrote:
> > Did you add the FQDN of the server, the server's name, or both to the
> > hosts file on the client?
>
>   Our hosts only have a "node" name as we don't have nis/ldap/dns for
> network name resolution.
>
>   In this case the puppet master's hostname is "dev-puppet" and I did
> not include that in the clients hostfile.  The entry I used is like
> this
>
> (clients hosts file)
> X.X.X.X     puppet
>
>   And on the puppetmaster server I used the following notation for the
> client's hosts entry.  The real name of the client in this example is
> "dev-sandbox" which is what I put in the puppetmasters hosts file.
>
> (puppetmaster hosts file)
> X.X.X.X     dev-sandbox
>
>   Once the cert exchange is complete I can remove that hosts entry for
> the client.
>
>   Does that help?
>

That's very helpful. I've been pulling my hair out trying to figure
out what's wrong. Our clients are behind a NATed VPN that the server
can't see through. (Long story. Don't ask.) This should be enough
information to get a good bug report, and set up a temporary fix.
-Patrick

Nobuchika Tanaka

unread,
Feb 23, 2010, 12:34:25 AM2/23/10
to Puppet Users
Hi.

> can you send a --debug --trace of your puppetd run? thanks.

I send a log with --debug --trace.
Do you have any idea?

#
# Starting puppetmasterd.
#
mise# puppetpuppetmasterd --debug --trace --no-daemonize
debug: Failed to load library 'selinux' for feature 'selinux'
debug: Failed to load library 'shadow' for feature 'libshadow'
debug: Puppet::Type::User::ProviderPw: file pw does not exist
debug: Puppet::Type::User::ProviderLdap: true value when expecting
false
debug: Puppet::Type::User::ProviderDirectoryservice: file /usr/bin/
dscl does not exist
debug: Failed to load library 'ldap' for feature 'ldap'
debug: /File[/var/puppet/reports]: Autorequiring File[/var/puppet]
debug: /File[/etc/puppet/ssl/crl.pem]: Autorequiring File[/etc/puppet/
ssl]
debug: /File[/var/puppet/bucket]: Autorequiring File[/var/puppet]
debug: /File[/var/puppet/run]: Autorequiring File[/var/puppet]
debug: /File[/var/puppet/state]: Autorequiring File[/var/puppet]
debug: /File[/etc/puppet/manifests/site.pp]: Autorequiring File[/etc/
puppet/manifests]
debug: /File[/etc/puppet/ssl/certs/ca.pem]: Autorequiring File[/etc/
puppet/ssl/certs]
debug: /File[/etc/puppet/puppet.conf]: Autorequiring File[/etc/puppet]
debug: /File[/var/puppet/rrd]: Autorequiring File[/var/puppet]
debug: /File[/etc/puppet/ssl/public_keys/mise.pem]: Autorequiring
File[/etc/puppet/ssl/public_keys]
debug: /File[/etc/puppet/ssl/certificate_requests]: Autorequiring
File[/etc/puppet/ssl]
debug: /File[/var/puppet/log]: Autorequiring File[/var/puppet]
debug: /File[/var/puppet/lib]: Autorequiring File[/var/puppet]
debug: /File[/etc/puppet/ssl/certs]: Autorequiring File[/etc/puppet/
ssl]
debug: /File[/var/puppet/run/puppetmasterd.pid]: Autorequiring File[/
var/puppet/run]
debug: /File[/etc/puppet/ssl/private_keys]: Autorequiring File[/etc/
puppet/ssl]
debug: /File[/etc/puppet/ssl/public_keys]: Autorequiring File[/etc/
puppet/ssl]
debug: /File[/etc/puppet/fileserver.conf]: Autorequiring File[/etc/
puppet]
debug: /File[/var/puppet/facts]: Autorequiring File[/var/puppet]
debug: /File[/etc/puppet/ssl/certs/mise.pem]: Autorequiring File[/etc/
puppet/ssl/certs]
debug: /File[/etc/puppet/ssl]: Autorequiring File[/etc/puppet]
debug: /File[/etc/puppet/ssl/private]: Autorequiring File[/etc/puppet/
ssl]
debug: /File[/var/puppet/yaml]: Autorequiring File[/var/puppet]
debug: /File[/var/puppet/log/masterhttp.log]: Autorequiring File[/var/
puppet/log]
debug: /File[/etc/puppet/manifests]: Autorequiring File[/etc/puppet]
debug: /File[/etc/puppet/ssl/private_keys/mise.pem]: Autorequiring
File[/etc/puppet/ssl/private_keys]
debug: Finishing transaction 75360510 with 0 changes
debug: /File[/etc/puppet/ssl/ca/serial]: Autorequiring File[/etc/
puppet/ssl/ca]
debug: /File[/etc/puppet/ssl/ca/signed]: Autorequiring File[/etc/
puppet/ssl/ca]
debug: /File[/etc/puppet/ssl/ca/private/ca.pass]: Autorequiring File[/
etc/puppet/ssl/ca/private]
debug: /File[/etc/puppet/ssl/ca/ca_key.pem]: Autorequiring File[/etc/
puppet/ssl/ca]
debug: /File[/etc/puppet/ssl/ca/private]: Autorequiring File[/etc/
puppet/ssl/ca]
debug: /File[/etc/puppet/ssl/ca/ca_crl.pem]: Autorequiring File[/etc/
puppet/ssl/ca]
debug: /File[/etc/puppet/ssl/ca/inventory.txt]: Autorequiring File[/
etc/puppet/ssl/ca]
debug: /File[/etc/puppet/ssl/ca/ca_pub.pem]: Autorequiring File[/etc/
puppet/ssl/ca]
debug: /File[/etc/puppet/ssl/ca/ca_crt.pem]: Autorequiring File[/etc/
puppet/ssl/ca]
debug: /File[/etc/puppet/ssl/ca/requests]: Autorequiring File[/etc/
puppet/ssl/ca]
debug: Finishing transaction 75095500 with 0 changes
debug: Using cached certificate for ca, good until Sat Feb 21 02:03:32
UTC 2015
debug: Using cached certificate for ca, good until Sat Feb 21 02:03:32
UTC 2015
debug: Using cached certificate for mise, good until Sat Feb 21
02:04:24 UTC 2015
notice: Starting Puppet server version 0.25.4
debug: Finishing transaction 75741800 with 0 changes
info: mount[dist]: allowing 10.71.184.0/22 access
info: mount[dist]: allowing 10.72.144.0/21 access
debug: No modules mount given; autocreating with default permissions
debug: No plugins mount given; autocreating with default permissions
debug: Creating interpreter
debug: Finishing transaction 75721150 with 0 changes
#
# 1.When puppetd(sol10tst1) connected puppetmasterd(mise) initially
and puppetmasterd showed messages below.
#
err: Could not resolve 10.72.150.56: undefined method `include?' for
nil:NilClass
err: Could not resolve 10.72.150.56: undefined method `include?' for
nil:NilClass
info: Could not find certificate for 'sol10tst1'
err: Could not resolve 10.72.150.56: undefined method `include?' for
nil:NilClass
info: Could not find certificate_request for 'sol10tst1'
err: Could not resolve 10.72.150.56: undefined method `include?' for
nil:NilClass
notice: sol10tst1 has a waiting certificate request
notice: Signed certificate request for sol10tst1
notice: Removing file Puppet::SSL::CertificateRequest sol10tst1 at '/
etc/puppet/ssl/ca/requests/sol10tst1.pem'
err: Could not resolve 10.72.150.56: undefined method `include?' for
nil:NilClass
#
# 2.When executing puppetrun on puppetmasterd(mise) and puppetmasterd
showed messages below.
#
info: Inserting default '~ ^/catalog/([^/]+)$'(auth) acl because /etc/
puppet/auth.conf doesn't exist
info: Inserting default '/file'(non-auth) acl because /etc/puppet/
auth.conf doesn't exist
info: Inserting default '/certificate_revocation_list/ca'(auth) acl
because /etc/puppet/auth.conf doesn't exist
info: Inserting default '/report'(auth) acl because /etc/puppet/
auth.conf doesn't exist
info: Inserting default '/certificate/ca'(non-auth) acl because /etc/
puppet/auth.conf doesn't exist
info: Inserting default '/certificate/'(non-auth) acl because /etc/
puppet/auth.conf doesn't exist
info: Inserting default '/certificate_request'(non-auth) acl because /
etc/puppet/auth.conf doesn't exist
warning: Could not retrieve fact fqdn
info: Expiring the node cache of sol10tst1
info: Not using expired node for sol10tst1 from cache; expired at Tue
Feb 23 14:03:48 +0900 2010
info: Caching node for sol10tst1
debug: importing '/etc/puppet/manifests/sub/site.pp'
debug: importing '/etc/puppet/manifests/sub/kind.pp'
debug: Adding code to main on line 4 in file /etc/puppet/manifests/sub/
kind.pp
warning: Host is missing hostname and/or domain: sol10tst1
debug: Scope(Class[base]): Retrieving template etc/inet/hosts
debug: template[/var/puppet/templates/etc/inet/hosts]: Bound template
variables for /var/puppet/templates/etc/inet/hosts in 0.00 seconds
debug: template[/var/puppet/templates/etc/inet/hosts]: Interpolated
template /var/puppet/templates/etc/inet/hosts in 0.00 seconds
debug: Scope(Class[sgeee]): Retrieving template var/puppet/log/
inst_template_execd.conf
debug: template[/var/puppet/templates/var/puppet/log/
inst_template_execd.conf]: Bound template variables for /var/puppet/
templates/var/puppet/log/inst_template_execd.conf in 0.00 seconds
debug: template[/var/puppet/templates/var/puppet/log/
inst_template_execd.conf]: Interpolated template /var/puppet/templates/
var/puppet/log/inst_template_execd.conf in 0.00 seconds
debug: Scope(Class[sgeee]): Retrieving template var/puppet/log/qconf-
Me.txt
debug: template[/var/puppet/templates/var/puppet/log/qconf-Me.txt]:
Bound template variables for /var/puppet/templates/var/puppet/log/
qconf-Me.txt in 0.00 seconds
debug: template[/var/puppet/templates/var/puppet/log/qconf-Me.txt]:
Interpolated template /var/puppet/templates/var/puppet/log/qconf-
Me.txt in 0.00 seconds
notice: Compiled catalog for sol10tst1 in 0.53 seconds
info: mount[dist]: allowing 10.71.184.0/22 access
info: mount[dist]: allowing 10.72.144.0/21 access
debug: Prefetching crontab resources for cron
debug: Executing 'crontab -l'
debug: Prefetching sun resources for package
debug: Puppet::Type::Package::ProviderSun: Executing '/usr/bin/pkginfo
-l'
debug: //base/Cron[amdlog_rotate.sh]/require: requires File[/var/log/
amdlog_rotate.sh]
debug: //base/Exec[set_domainname.sh]/require: requires File[/opt/
puppet/util/sh/set_domainname.sh]
debug: //base/Exec[start_amd.sh]/require: requires File[/etc/amd.conf]
debug: //base/Exec[start_amd.sh]/require: requires File[/usr/sbin/amd]
debug: //base/Exec[start_amd.sh]/require: requires File[/usr/sbin/amq]
debug: //base/Exec[start_amd.sh]/require: requires File[/usr/sbin/
wait4amd2die]
debug: //base/Exec[start_amd.sh]/require: requires File[/eda]
debug: //base/Exec[start_amd.sh]/require: requires File[/eda_local]
debug: //base/Exec[start_amd.sh]/require: requires File[/ALSI_EDA]
debug: //base/Exec[start_amd.sh]/require: requires
Cron[amdlog_rotate.sh]
debug: //base/Exec[start_amd.sh]/require: requires Service[svc:/system/
filesystem/autofs:default]
debug: //base/Exec[start_amd.sh]/require: requires File[/etc/rc2.d/
S74ctl-amd]
debug: //base/Exec[start_amd.sh]/require: requires File[/opt/puppet/
util/sh/start_amd.sh]
debug: //base/Service[svc:/network/nis/client:default]/require:
requires File[/etc/nsswitch.conf]
debug: //base/Service[svc:/network/nis/client:default]/require:
requires File[/etc/defaultdomain]
debug: //base/Service[svc:/network/nis/client:default]/require:
requires File[/var/yp/binding/sld]
debug: //base/Service[svc:/network/nis/client:default]/require:
requires Exec[set_domainname.sh]
debug: //sgeee/Exec[sge_ainst.sh]/require: requires File[/var/puppet/
log/inst_template_execd.conf]
debug: //sgeee/Exec[set_host_config.sh]/require: requires File[/var/
puppet/log/qconf-Aconf.txt]
debug: //sgeee/Exec[set_host_config.sh]/require: requires
Exec[sge_ainst.sh]
debug: //base/Service[svc:/system/console-login:default]/require:
requires File[/boot/solaris/bootenv.rc]
debug: //base/Service[svc:/system/console-login:default]/require:
requires File[/boot/grub/menu.lst]
debug: //base/Service[svc:/system/console-login:default]/require:
requires File[/kernel/drv/asy.conf]
debug: //base/Service[svc:/system/console-login:default]/require:
requires File[/var/svc/manifest/system/console-login.xml]
debug: //base/Service[svc:/system/console-login:default]/require:
requires Service[svc:/application/graphical-login/cde-login:default]
debug: //base/Service[svc:/system/console-login:default]/subscribe:
subscribes to File[/boot/solaris/bootenv.rc]
debug: //base/Service[svc:/system/console-login:default]/subscribe:
subscribes to File[/boot/grub/menu.lst]
debug: //base/Service[svc:/system/console-login:default]/subscribe:
subscribes to File[/kernel/drv/asy.conf]
debug: //base/Service[svc:/system/console-login:default]/subscribe:
subscribes to File[/var/svc/manifest/system/console-login.xml]
debug: //base/Service[svc:/system/console-login:default]/subscribe:
subscribes to Service[svc:/application/graphical-login/cde-
login:default]
debug: //sgeee/File[/etc/rc2.d/K02sgeexecd]/require: requires
Exec[sge_ainst.sh]
debug: //sgeee/Exec[set_host_group.sh]/require: requires File[/var/
puppet/log/host_list_ngk.txt]
debug: //sgeee/Exec[set_host_group.sh]/require: requires File[/var/
puppet/log/host_list_mrg.txt]
debug: //sgeee/Exec[set_host_group.sh]/require: requires File[/var/
puppet/log/host_list_kws.txt]
debug: //sgeee/Exec[set_host_group.sh]/require: requires
Exec[sge_ainst.sh]
debug: //base/Service[svc:/network/ntp:default]/require: requires
File[/etc/inet/ntp.conf]
debug: //base/Service[svc:/network/ntp:default]/subscribe: subscribes
to File[/etc/inet/ntp.conf]
debug: //base/File[/usr/local/bin/tcsh]/require: requires File[/usr/
local/bin]
debug: //sgeee/Exec[set_host_complex.sh]/require: requires File[/var/
puppet/log/qconf-Me.txt]
debug: //sgeee/Exec[set_host_complex.sh]/require: requires File[/var/
puppet/log/host_list_ngk.txt]
debug: //sgeee/Exec[set_host_complex.sh]/require: requires File[/var/
puppet/log/host_list_mrg.txt]
debug: //sgeee/Exec[set_host_complex.sh]/require: requires File[/var/
puppet/log/host_list_kws.txt]
debug: //sgeee/Exec[set_host_complex.sh]/require: requires
Exec[sge_ainst.sh]
debug: //base/File[/usr/local/bin]/require: requires File[/usr/local]
debug: //sgeee/File[/etc/rc2.d/S96sgeexecd]/require: requires
Exec[sge_ainst.sh]
debug: //base/Exec[initial_reboot.sh]/require: requires File[/etc/inet/
hosts]
debug: //base/Exec[initial_reboot.sh]/require: requires File[/.rhosts]
debug: //base/Exec[initial_reboot.sh]/require: requires File[/etc/
default/login]
debug: //base/Exec[initial_reboot.sh]/require: requires Service[svc:/
system/console-login:default]
debug: //base/Exec[initial_reboot.sh]/require: requires File[/etc/
default/init]
debug: //base/Exec[initial_reboot.sh]/require: requires File[/usr/
local/bin/tcsh]
debug: //base/Exec[initial_reboot.sh]/require: requires File[/etc/
rc3.d/S99puppetd]
debug: //base/Exec[initial_reboot.sh]/require: requires Service[svc:/
network/telnet:default]
debug: //base/Exec[initial_reboot.sh]/require: requires Service[svc:/
network/login:rlogin]
debug: //base/Exec[initial_reboot.sh]/require: requires Service[svc:/
network/shell:default]
debug: //base/Exec[initial_reboot.sh]/require: requires Service[svc:/
network/ipfilter:default]
debug: //base/Exec[initial_reboot.sh]/require: requires Service[svc:/
network/smtp:sendmail]
debug: //base/Exec[initial_reboot.sh]/require: requires Service[svc:/
application/wnn8/server:default]
debug: //base/Exec[initial_reboot.sh]/require: requires Service[svc:/
system/auditd:default]
debug: //base/Exec[initial_reboot.sh]/require: requires Service[svc:/
system/power:default]
debug: //base/Exec[initial_reboot.sh]/require: requires
Package[SUNWgnome-games]
debug: //base/Exec[initial_reboot.sh]/require: requires
Package[SUNWgnome-games-root]
debug: //base/Exec[initial_reboot.sh]/require: requires
Package[SUNWgnome-games-share]
debug: //base/Exec[initial_reboot.sh]/require: requires File[/etc/
nologin]
debug: //base/Exec[initial_reboot.sh]/require: requires File[/etc/
rc3.d/S99nologin]
debug: //base/Exec[initial_reboot.sh]/require: requires File[/usr/lib/
security/pam_members_only.so.1]
debug: //base/Exec[initial_reboot.sh]/require: requires File[/etc/
pam.conf]
debug: //base/Exec[initial_reboot.sh]/require: requires Service[svc:/
network/ntp:default]
debug: //base/Exec[initial_reboot.sh]/require: requires Service[svc:/
network/nis/client:default]
debug: //base/Exec[initial_reboot.sh]/require: requires
Exec[start_amd.sh]
debug: //base/Exec[initial_reboot.sh]: Autorequiring File[/opt/puppet/
util/sh/initial_reboot.sh]
info: Applying configuration version '1266901429'
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/application/graphical-login/cde-login:default'
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/application/graphical-login/cde-login:default'
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/network/ntp:default'
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/network/ntp:default'
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: //sgeee/File[/var/puppet/log/qconf-Me.txt]: Not tagged with
base
debug: /Schedule[monthly]: Not tagged with base
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: /Filebucket[puppet]: Not tagged with base
debug: /Schedule[weekly]: Not tagged with base
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/application/wnn8/server:default'
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/application/wnn8/server:default'
debug: Package[SUNWgnome-games](provider=sun): Executing '/usr/bin/
pkginfo -l SUNWgnome-games'
debug: //sgeee_preparation/File[/var/puppet/log/host_list_ngk.txt]:
Not tagged with base
debug: /Schedule[daily]: Not tagged with base
debug: //sgeee/File[/var/puppet/log/qconf-Aconf.txt]: Not tagged with
base
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/network/telnet:default'
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/network/telnet:default'
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/system/filesystem/autofs:default'
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/system/filesystem/autofs:default'
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/network/ipfilter:default'
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/network/ipfilter:default'
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: //sgeee_preparation/File[/var/puppet/log/host_list_mrg.txt]:
Not tagged with base
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: //sgeee_preparation/File[/var/puppet/log/host_list_kws.txt]:
Not tagged with base
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/system/auditd:default'
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/system/auditd:default'
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/network/shell:default'
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/network/shell:default'
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: Package[SUNWgnome-games-root](provider=sun): Executing '/usr/
bin/pkginfo -l SUNWgnome-games-root'
debug: //sgeee/File[/var/puppet/log/inst_template_execd.conf]: Not
tagged with base
debug: //sgeee/Exec[sge_ainst.sh]: Not tagged with base
debug: //sgeee/File[/etc/rc2.d/K02sgeexecd]: Not tagged with base
debug: //sgeee/Exec[set_host_config.sh]: Not tagged with base
debug: //sgeee/Exec[set_host_group.sh]: Not tagged with base
debug: //sgeee/File[/etc/rc2.d/S96sgeexecd]: Not tagged with base
debug: //sgeee/Exec[set_host_complex.sh]: Not tagged with base
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/network/login:rlogin'
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/network/login:rlogin'
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/network/smtp:sendmail'
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/network/smtp:sendmail'
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/system/console-login:default'
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/system/console-login:default'
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/network/ssh:default'
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/network/ssh:default'
debug: Package[SUNWgnome-games-share](provider=sun): Executing '/usr/
bin/pkginfo -l SUNWgnome-games-share'
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: /Schedule[puppet]: Not tagged with base
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: /Schedule[never]: Not tagged with base
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/system/power:default'
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/system/power:default'
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/network/nis/client:default'
debug: Puppet::Type::Service::ProviderSmf: Executing '/usr/bin/svcs -H
-o state,nstate svc:/network/nis/client:default'
debug: file_metadata supports formats: b64_zlib_yaml marshal pson raw
yaml; using pson
debug: /Schedule[hourly]: Not tagged with base

Nobuchika Tanaka.

Patrick

unread,
Feb 23, 2010, 3:47:46 AM2/23/10
to puppet...@googlegroups.com

On Feb 22, 2010, at 9:34 PM, Nobuchika Tanaka wrote:

err: Could not resolve 10.72.150.56: undefined method `include?' for
nil:NilClass
err: Could not resolve 10.72.150.56: undefined method `include?' for
nil:NilClass
info: Could not find certificate for 'sol10tst1'
err: Could not resolve 10.72.150.56: undefined method `include?' for
nil:NilClass
info: Could not find certificate_request for 'sol10tst1'
err: Could not resolve 10.72.150.56: undefined method `include?' for
nil:NilClass
notice: sol10tst1 has a waiting certificate request
notice: Signed certificate request for sol10tst1
notice: Removing file Puppet::SSL::CertificateRequest sol10tst1 at '/
etc/puppet/ssl/ca/requests/sol10tst1.pem'
err: Could not resolve 10.72.150.56: undefined method `include?' for
nil:NilClass
#

This might be a failed reverse lookup to me.  I don't know enough to help you, but giving this information might help the devs.

Is 10.72.150.56 the client or the server?
Also, what happens on each of them if you do an nslookup for 10.72.150.56?  

Nobuchika Tanaka

unread,
Feb 23, 2010, 4:22:02 AM2/23/10
to Puppet Users
> Is 10.72.150.56 the client or the server?
10.72.150.56 is client and hostname is sol10tst1.
mise is server.

> Also, what happ on each of them if you do an nslookup for 10.72.150.56?  

Both of them can't connet server, because we are't using DNS.

mise# nslookup 10.72.150.56
;; connection timed out; no servers could be reached.

sol10tst1# nslookup 10.72.150.56
;; connection timed out; no servers could be reached.

Does Puppet need DNS internally?

Nobuchika Tanaka.

Patrick

unread,
Feb 23, 2010, 1:22:17 PM2/23/10
to puppet...@googlegroups.com
The only explanation that I can find that explains the problems that I and a few other user have been having is that 0.25.x adds a security feature that makes it needed during the creation of client certificates.  (Either that or during the signing or retrieval of the certificates.)  It could be a bug, but I think it's more likely a feature. 

As a workaround you could try adding the client to the server's /etc/hosts file.

Nobuchika Tanaka

unread,
Feb 25, 2010, 2:39:32 AM2/25/10
to Puppet Users
Hi Patrick.

I checked workaround you suggested.
Accroding to workaround, messages didn't appear any more.

Thank you for telling me workaroud.

Nobuchika Tanaka.

Reply all
Reply to author
Forward
0 new messages