I have this working on 2 other machines.  Would you help me determine
what I''ve overlooked?
Version
[beer@free30 manifests]# puppet -V
0.25.5
The command and error:
[beer@free30 etc]$ sudo puppet -v /etc/puppet/manifests/site.pp --
debug
debug: importing ''/etc/puppet/manifests/modules.pp''
debug: importing
''/etc/puppet/modules/testfile/manifests/init.pp''
debug: importing
''/etc/puppet/modules/freetds/manifests/init.pp''
debug: importing ''/etc/puppet/modules/odbc/manifests/init.pp''
debug: importing
''/etc/puppet/modules/odbcinst/manifests/init.pp''
debug: importing ''/etc/puppet/modules/monit/manifests/init.pp''
debug: importing ''/etc/puppet/manifests/nodes.pp''
debug: Adding code to main on line 30 in file /etc/puppet/manifests/
nodes.pp
debug: Adding code to main on line 14 in file /etc/puppet/manifests/
site.pp
debug: Failed to load library ''selinux'' for feature
''selinux''
Could not find default node or by name with ''free30.test.com,
free30.test, free30'' on node free30.test.com
[beer@free30 etc]$
nodes.pp:
# /etc/puppet/manifests/nodes.pp
# make sure you know what you are doing.
node basenode {
  include testfile
  include freetds
  include odbc
  include odbcinst
  include monit
}
node ''free30.test.com'' inherits basenode {
}
site.pp:
# /etc/puppet/manifests/site.pp
import "modules"
import "nodes"
# The filebucket option allows for file backups to the server
# *Note this is not working but appears to be required
filebucket { main: server => ''no.where.com'' }
# Set global defaults - including backing up all files to the main
filebucket and adds a global path
File { backup => main }
Exec { path => "/usr/bin:/usr/sbin/:/bin:/sbin" }
-- 
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to
puppet-users+unsubscribe@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/puppet-users?hl=en.
Could not find default node or by name with ''free30.test.com,
free30.test, free30'' on node free30.test.com
DNS? Change your node to description to:
node ''free30'' inherits basenode {
}
make sure that the puppet master can resolve it.
On Aug 17, 6:30 am, bmort <propertywholesa...@gmail.com>
wrote:> I have this working on 2 other machines.  Would you help me determine
> what I''ve overlooked?
>
> Version
> [beer@free30 manifests]# puppet -V
> 0.25.5
>
> The command and error:
> [beer@free30 etc]$ sudo puppet -v /etc/puppet/manifests/site.pp --
> debug
> debug: importing ''/etc/puppet/manifests/modules.pp''
> debug: importing
''/etc/puppet/modules/testfile/manifests/init.pp''
> debug: importing
''/etc/puppet/modules/freetds/manifests/init.pp''
> debug: importing
''/etc/puppet/modules/odbc/manifests/init.pp''
> debug: importing
''/etc/puppet/modules/odbcinst/manifests/init.pp''
> debug: importing
''/etc/puppet/modules/monit/manifests/init.pp''
> debug: importing ''/etc/puppet/manifests/nodes.pp''
> debug: Adding code to main on line 30 in file /etc/puppet/manifests/
> nodes.pp
> debug: Adding code to main on line 14 in file /etc/puppet/manifests/
> site.pp
> debug: Failed to load library ''selinux'' for feature
''selinux''
> Could not find default node or by name with ''free30.test.com,
> free30.test, free30'' on node free30.test.com
> [beer@free30 etc]$
>
> nodes.pp:
> # /etc/puppet/manifests/nodes.pp
>
> # make sure you know what you are doing.
> node basenode {
>   include testfile
>   include freetds
>   include odbc
>   include odbcinst
>   include monit
>
> }
>
> node ''free30.test.com'' inherits basenode {
>
> }
>
> site.pp:
> # /etc/puppet/manifests/site.pp
>
> import "modules"
> import "nodes"
>
> # The filebucket option allows for file backups to the server
> # *Note this is not working but appears to be required
> filebucket { main: server => ''no.where.com'' }
>
> # Set global defaults - including backing up all files to the main
> filebucket and adds a global path
> File { backup => main }
> Exec { path => "/usr/bin:/usr/sbin/:/bin:/sbin" }
-- 
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to
puppet-users+unsubscribe@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/puppet-users?hl=en.
Thank you. On Aug 17, 12:02 am, denmat <tu2bg...@gmail.com> wrote:> Could not find default node or by name with ''free30.test.com, > free30.test, free30'' on node free30.test.com > > DNS? Change your node to description to: > > node ''free30'' inherits basenode { > > } > > make sure that the puppet master can resolve it. > > On Aug 17, 6:30 am, bmort <propertywholesa...@gmail.com> wrote: > > > I have this working on 2 other machines. Would you help me determine > > what I''ve overlooked? > > > Version > > [beer@free30 manifests]# puppet -V > > 0.25.5 > > > The command and error: > > [beer@free30 etc]$ sudo puppet -v /etc/puppet/manifests/site.pp -- > > debug > > debug: importing ''/etc/puppet/manifests/modules.pp'' > > debug: importing ''/etc/puppet/modules/testfile/manifests/init.pp'' > > debug: importing ''/etc/puppet/modules/freetds/manifests/init.pp'' > > debug: importing ''/etc/puppet/modules/odbc/manifests/init.pp'' > > debug: importing ''/etc/puppet/modules/odbcinst/manifests/init.pp'' > > debug: importing ''/etc/puppet/modules/monit/manifests/init.pp'' > > debug: importing ''/etc/puppet/manifests/nodes.pp'' > > debug: Adding code to main on line 30 in file /etc/puppet/manifests/ > > nodes.pp > > debug: Adding code to main on line 14 in file /etc/puppet/manifests/ > > site.pp > > debug: Failed to load library ''selinux'' for feature ''selinux'' > > Could not find default node or by name with ''free30.test.com, > > free30.test, free30'' on node free30.test.com > > [beer@free30 etc]$ > > > nodes.pp: > > # /etc/puppet/manifests/nodes.pp > > > # make sure you know what you are doing. > > node basenode { > > include testfile > > include freetds > > include odbc > > include odbcinst > > include monit > > > } > > > node ''free30.test.com'' inherits basenode { > > > } > > > site.pp: > > # /etc/puppet/manifests/site.pp > > > import "modules" > > import "nodes" > > > # The filebucket option allows for file backups to the server > > # *Note this is not working but appears to be required > > filebucket { main: server => ''no.where.com'' } > > > # Set global defaults - including backing up all files to the main > > filebucket and adds a global path > > File { backup => main } > > Exec { path => "/usr/bin:/usr/sbin/:/bin:/sbin" } > >-- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.