On Feb 17, 1:03 am, sam <[email protected]> wrote: > On Fri, Feb 17, 2012 at 12:08 PM, krish <[email protected]> wrote: > > On Fri, Feb 17, 2012 at 11:50 AM, sam <[email protected]> wrote: > >> Is there anyone who can help me ? > > > 1. Why not use maverick repo. Why source? > > Installing from source is the best method I guess and I've to do it on > production boxes with source.
Installing from source is inferior to installing via a decent package manager for multiple reasons, among them: 1) Installation from source yields poor documentation of what's actually installed on the system 2) Installation from source limits repeatability -- what options did you enable, which installation paths did you choose, etc. 3) Installation from source offers no real dependency management 4) Software installed from source is difficult to uninstall If you want to build your own software, then go the extra step and package it up for your system's native package manager. It's not that hard. > The error It showing is : > > root@laptop:~# puppet agent --test > The interpreter parameter to 'setcode' is deprecated and will be > removed in a future version. I don't think that bit is important. > notice: /File[/var/lib/puppet/state/last_run_summary.yaml]/content: > --- /var/lib/puppet/state/last_run_summary.yaml 2012-02-17 > 12:25:15.696246117 +0530 > +++ /tmp/puppet-file20120217-1720-1hfxuso-0 2012-02-17 12:26:32.295423615 > +0530 > @@ -1,6 +1,6 @@ > --- > time: > - last_run: 1329461715 > + last_run: 1329461792 > version: > puppet: 2.7.10 > config: > \ No newline at end of file > > err: Could not send report: Connection refused - connect(2) That could be your root problem. Do you perchance have a firewall blocking access to the master? > err: Could not run Puppet configuration client: Could not retrieve > local facts: undefined method `get_uptime' for > Facter::Util::Uptime:Module This looks similar: http://stackoverflow.com/questions/3798107/undefined-method-get-uptime-for-facterutiluptimemodule-nomethoderror In that case, the problem was that multiple versions of facter were installed in different places on the system. That, by the way, is a problem that can be avoided by being sure to install software only via packages, and only via a single package manager (gem must be considered a package manager, too). John -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
