Displaying 3 results from an estimated 3 matches for "puppet_port".
Did you mean:
puppet_port_t
2010 Sep 09
5
Having trouble configuring puppet for file serving
Hi,
I am running puppet-server 0.25.5 on CentOS 5.4.
I defined a moudle in /etc/puppet/fileserver.conf as below:
[files]
path /tmp/puppet
allow *
I also defined a resource in /etc/puppet/manifests/site.pp:
file { "/etc/passwd":
owner => "root",
group => "bin",
mode => 644,
}
file { "/tmp/0909.txt":
source =>
2007 Jun 20
4
puppetmaster through HTTP proxy
I have a test area network that is not routed to the production network
because of IP address space re-use between the two networks. I would
like the puppetmaster to serve both the production and test area
networks. The puppetmaster is on the production network. I understand
the puppet to puppetmaster connect to be HTTP using SSL.
Can I somehow setup the puppet clients to use an HTTP
2007 Apr 30
6
Installing puppetmasterd, puppetd as services under Red Hat, CentOS
...l (despite it not scaling)
but leads to problems like
/usr/bin/env: ruby: No such file or directory
when one naively tries to use
/usr/local/lib/ruby/gems/1.8/gems/puppet-0.22.3/conf/redhat/client.init
/usr/local/lib/ruby/gems/1.8/gems/puppet-0.22.3/conf/redhat/server.init
:(
Aside: --port=${PUPPET_PORT} makes puppetd gag; that should probably be
fixed.
I''ve worked around this by changing
#!/usr/bin/env ruby
to
#!/usr/local/bin/ruby
in puppetmasterd, puppetd, and ralsh, but something tells me this is not
the right way to fix this problem. I tried adding /usr/local/bin to PATH
in...