[Puppet Users] Turn off client autoupdate

2011-06-24 Thread Sergey V. Arlashin
By default puppet node connects to server periodically and looks if there is something execute. I'm wondering is it possible to make puppet clients not connect to server themselves? So that it would be possible to update a node only with puppetrun nodename. --- WBR, Sergey -- You received this m

[Puppet Users] Turn off client autoupdate

2011-06-24 Thread Sergey V. Arlashin
Hello! By default puppet node connects to server periodically and looks if there is something execute. I'm wondering is it possible to make puppet clients not connect to server themselves? So that it would be possible to update a node only with puppetrun nodename. --- WBR, Sergey -- You receive

[Puppet Users] puppetmasterd verbose log

2011-01-27 Thread Sergey V. Arlashin
Hi! When I issue $ puppetmasterd --no-daemonize --verbose I get very neat and clear log to STDIN. But I can't figure out how to get this log when I start puppetmasterd without --no-daemonize option. Is it possible? -- You received this message because you are subscribed to the Google Groups "

[Puppet Users] Install rubygem package in order to use with library

2012-08-21 Thread Sergey V. Arlashin
Hello! I have a custom function which requires a ruby gem which I have in my deb-repository. If the package is installed beforehand manually the function works well. But if I want to install the package with puppet I get the following error: out: Could not autoload zabbix_host: no such file to

Re: [Puppet Users] Install rubygem package in order to use with library

2012-08-22 Thread Sergey V. Arlashin
.. > What's on line 83 of your init.pp? zabbix_host { "${::fqdn}": ensure => present, template => $zabbix_template, group=> 'Linux servers', api_host => $api_host, require => Package['librubix-puppet-ruby1.8'] } O