Sorry for the late response .. been travelling ..

Thanks for the suggestion .. and yes, I considered that.  But the challenge
is this:

there is no fusioninventory-agent in the standard OS repos on some of my
hosts running certain versions  of OS, and for those hosts I would
typically need to enable use additional repos ..

On second thoughts, you seem to have official repos for most of the clients
I am considering .. so, perhaps I could extend the standard types, and make
puppet append your repo, add the key, and run an update before the standard
types ..

That ought to work .. yes?


On 27 January 2013 19:55, Guillaume Rousse <[email protected]> wrote:

> Le 22/01/2013 10:50, Carlos Gunners a écrit :
>
>  Goneri,
>>
>> Thanks a million for responding .. and it's great to hear that some
>> others have already started looking at that ..
>>
>> I see the following:
>> https://github.com/lefred/**puppet-fusioninventory<https://github.com/lefred/puppet-fusioninventory>
>> https://github.com/**HIGHLANDSTECHNOLOGIESSAS/**
>> highlands-fusioninventoryagent<https://github.com/HIGHLANDSTECHNOLOGIESSAS/highlands-fusioninventoryagent>
>>
> If your point is just to install the agent and its configuration, and
> ensure its runs either as a service or as a cron task, you don't need any
> specific puppet module, basic puppets types are enough:
>
> package { "fusioninventory-agent":
>     ensure => present,
> }
>
> file { "agent.cfg":
>     path    => "/etc/fusioninventory/agent.**cfg",
>     owner   => "root",
>     group   => "root",
>     mode    => 644,
>     require => Package[fusioninventory-agent]**,
>     source  => "puppet:///modules/inventory/**agent.cfg"
> }
>
> cron { "fusioninventory-agent":
>     command => "/usr/bin/fusioninventory-**agent",
>     user    => "root",
>     hour    => "06",
>     minute  => "00",
> }
>
> service { "fusioninventory-agent":
>     ensure => disabled,
>     enable => false,
> }
>
> --
> BOFH excuse #73:
>
> Daemons did it
>
>
> ______________________________**_________________
> Fusioninventory-user mailing list
> Fusioninventory-user@lists.**alioth.debian.org<[email protected]>
> http://lists.alioth.debian.**org/cgi-bin/mailman/listinfo/**
> fusioninventory-user<http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/fusioninventory-user>
>
_______________________________________________
Fusioninventory-user mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/fusioninventory-user

Reply via email to