[Puppet Users] Problem with my puppet agent 7.27 on a Windows client

2023-12-15 Thread puppetstan
Hi,

I have a problem with my puppet agent on a Windows client

I installed the puppet agent on my windows client.

I downloaded it here : 
https://downloads.puppetlabs.com/windows/puppet7/index.html

I took the following version : puppet-agent-x64-latest.msi

here is the installed version

C:\Users\Administrateur>puppet -V
7.27.0


My puppet file (puppet.conf) is in this directory 
C:\ProgramData\PuppetLabs\puppet\etc


[main]
server=puppet.domain.fr
autoflush=true
environment=production


when I force the puppet agent I get the following error

C:\Users\Administrateur>puppet agent -t
Error: certificate verify failed [unable to get issuer certificate for 
CN=Puppet CA: puppet.domain.fr]
Error: certificate verify failed [unable to get issuer certificate for 
CN=Puppet CA: puppet.domain.fr]


Do you have an idea of ​​the problem?

Regards

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/8e1fc7b1-4775-47bc-a455-cc818e7935d3n%40googlegroups.com.


[Puppet Users] Re: Puppetboard and postgresql - Reports take up space.

2023-11-21 Thread puppetstan
Hello, 

Thank you for your answer I will apply that but I just saw that by default 
it is 14 days. So I think my problem lies elsewhere...

Regards


Le jeudi 16 novembre 2023 à 20:54:02 UTC+1, austin...@puppet.com a écrit :

> That script looks to be related to the old puppet-dashboard, and I don't 
> think it would work with Puppetboard. To my knowledge, Puppetboard does not 
> store any reports and is only a frontend for displaying PuppetDB data. If 
> you find the reports in your PuppetDB growing too large, you can lower the 
> value of report-ttl 
> <https://www.puppet.com/docs/puppetdb/8/configure.html#report-ttl> in 
> your PuppetDB configuration.
>
> On Thursday, November 16, 2023 at 9:07:22 AM UTC-8 puppetstan wrote:
>
>> Hello,
>>
>> I installed puppetboard and a postgresql database. 
>>
>> Reports take up space. On an old server I installed a script which 
>> contained this
>>
>> #!/bin/bash
>> DBOARD_DIR=/usr/share/puppet-dashboard
>>
>> cd ${DBOARD_DIR}
>> rake RAILS_ENV=production reports:prune upto=1 unit=mon
>> rake RAILS_ENV=production db:raw:optimize
>>
>>
>> do you think this is the right solution? is there another solution?
>>
>> Regards
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/88a2ab46-aa4b-416f-8bc7-d7193e24d2cbn%40googlegroups.com.


[Puppet Users] Puppetboard and postgresql - Reports take up space.

2023-11-16 Thread puppetstan
 Hello,

I installed puppetboard and a postgresql database. 

Reports take up space. On an old server I installed a script which 
contained this

#!/bin/bash
DBOARD_DIR=/usr/share/puppet-dashboard

cd ${DBOARD_DIR}
rake RAILS_ENV=production reports:prune upto=1 unit=mon
rake RAILS_ENV=production db:raw:optimize


do you think this is the right solution? is there another solution?

Regards

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/a1858c69-5e76-491c-8933-b92d9e85b276n%40googlegroups.com.


[Puppet Users] search in a section a setting and execute a command

2017-02-28 Thread puppetstan
Hi,

Actually my configuation permit to search in a section a parameter and give 
it a value. this it's ok

ini_setting {'priority':
  ensure=> present,
  path  => '/etc/file',
  section   => 'main',
  key_val_separator => '=',
  setting   => 'priority',
  value => '5',
}


But now, i would like doing the same (search in a section a parameter) if 
he doesnt exist, not create it and give a value but execute a command...

can you have an idea?
regards

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/a93c1d57-0598-49e5-b126-703aa904d770%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Re: optimize my configuration

2017-02-28 Thread puppetstan
thanks,

i think the local repository is the best choice...i create it with 
createrepo

regards

Le mardi 14 février 2017 15:09:23 UTC+1, jcbollinger a écrit :
>
>
>
> On Monday, February 13, 2017 at 10:51:42 AM UTC-6, puppetstan wrote:
>>
>> thanks for your answer
>>
>> But with this conf, my package package-5.0.el6.noarch.rpm is 
>> automatically downloaded even if my package version is 5.0. So it's my 
>> problem. I don't want downloaded package package-5.0.el6.noarch.rpm if my 
>> version package is 5.0...
>>
>> file { "/tmp/package-5.0.el6.noarch.rpm":
>> #ensure => 'present',
>>source => "puppet:///modules/puppet/package-5.0.el6.noarch.rpm"
>>   }
>>
>>
>> package { "package":
>> ensure => '5.0',
>> provider => 'rpm',
>> source => "/tmp/package-5.0.el6.noarch.rpm",
>> require => File["/tmp/package-5.0.el6.noarch.rpm"]
>> }
>>
>>
>
> I strongly recommend creating a local repository for your RPMs, and using 
> yum to manage packages (under Puppet direction).  The job you propose to 
> have Puppet do is among yum's core behaviors.
>
> If you insist on doing it manually, however, then you have two main 
> choices:
>
>1. Accept that Puppet will maintain copies of your RPMs on each 
>machine.  Give it a place to put them where they will be persistent (i.e. 
>some place other than /tmp) -- Puppet will not download your RPMs again if 
>they are already there.
>2. Create one or more custom facts by which to convey to Puppet 
>whether the RPM(s) of interest are already installed and at the desired 
>version.  Your manifests can then declare both the File resource and the 
>Package resource conditionally, based on the value of the fact.
>
> Option (2) seems to be what you're asking for, but it is the messiest and 
> most fragile alternative of all those available to you.
>
>
> John
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/a0d38398-523d-45fe-aea2-3b2a9067dc7c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Re: optimize my configuration

2017-02-13 Thread puppetstan
thanks for your answer

But with this conf, my package package-5.0.el6.noarch.rpm is automatically 
downloaded even if my package version is 5.0. So it's my problem. I don't 
want downloaded package package-5.0.el6.noarch.rpm if my version package is 
5.0...

file { "/tmp/package-5.0.el6.noarch.rpm":
#ensure => 'present',
   source => "puppet:///modules/puppet/package-5.0.el6.noarch.rpm"
  }


package { "package":
ensure => '5.0',
provider => 'rpm',
source => "/tmp/package-5.0.el6.noarch.rpm",
require => File["/tmp/package-5.0.el6.noarch.rpm"]
}

Regards


Le lundi 13 février 2017 16:44:03 UTC+1, Michael Watters a écrit :
>
> ensure => '5.0' should work but you may want to add a dependency to the 
> package resource to ensure that the file is downloaded first.
>
> package { "package":
> ensure => '5.0',
> provider => 'rpm',
> source => '/tmp/package-5.0.el6.noarch.rpm',
> require => File['/tmp/package-5.0.el6.noarch.rpm',
> }
>
>
> On Monday, February 13, 2017 at 7:56:09 AM UTC-5, puppetstan wrote:
>>
>> Hi,
>>
>> i would like modify my conf because is not satisfactory
>>
>> i would live verify my package version and if my version is 5.0 i do 
>> notfhing but if the version is 2.0 for example i download my package in 
>> /tmp and i update package...this is my conf but it's not very good...
>>
>> file { "/tmp/package-5.0.el6.noarch.rpm":
>> ensure => 'present',
>>source => "puppet:///modules/package/package-5.0.el6.noarch.rpm"
>>   }
>>
>> package { "package":
>> ensure => '5.0',
>> provider => 'rpm',
>> source => "/tmp/package-5.0.el6.noarch.rpm"
>> }
>>
>> can you have an idea with condition if i do nothing else dwonload package 
>> and i update...
>> regards
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/c089f9c6-95ae-45f7-819e-332a1900f362%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] optimize my configuration

2017-02-13 Thread puppetstan
Hi,

i would like modify my conf because is not satisfactory

i would live verify my package version and if my version is 5.0 i do 
notfhing but if the version is 2.0 for example i download my package in 
/tmp and i update package...this is my conf but it's not very good...

file { "/tmp/package-5.0.el6.noarch.rpm":
ensure => 'present',
   source => "puppet:///modules/package/package-5.0.el6.noarch.rpm"
  }

package { "package":
ensure => '5.0',
provider => 'rpm',
source => "/tmp/package-5.0.el6.noarch.rpm"
}

can you have an idea with condition if i do nothing else dwonload package 
and i update...
regards

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/9c1874f7-f9ab-406f-bd66-df2fc9f74a9d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Re: check if the package is installed and compare the version

2016-06-17 Thread puppetstan
Ithank you

I understand, I do not use puppet as he would really


Le vendredi 17 juin 2016 11:23:45 UTC+2, puppetstan a écrit :
>
> Hi,
>
>
> I'm not an expert on puppet and I have some syntax problems
>
>
> I would check if the package is installed and compare the version of the 
> package with the version I would like to see installed
>
>
> IF the package is installed with the correct version DO NOTHING
>
> BUT if it is not installed or installed but not the correct version, 
> uninstall it and download the right package with the right version and 
> install
>
>
> I started to do something that is not terrible and I would like your help 
> to answer my problem
>
>
> thank you very much in advance
>
>
> here is the beginning of what I've done
>
>
> if package { 'xyz' ensure=> '1.2'}
> do nothing
>
> else {
> exec => rpm -e xyp-packagebadversion
>
>
> file { "/tmp/xyz-packagegoodversion":
>ensure => 'present',
>source => "puppet:///modules/package/xyz-packagegoodversion"
> }
> package { "xyz":
> ensure => '1.2',
> provider => 'rpm',
> source => "/tmp/xyz-packagegoodversion"
> }
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/8a17c930-e7c6-4a8d-b6b1-908be5645fdb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] check if the package is installed and compare the version

2016-06-17 Thread puppetstan


Hi,


I'm not an expert on puppet and I have some syntax problems


I would check if the package is installed and compare the version of the 
package with the version I would like to see installed


IF the package is installed with the correct version DO NOTHING

BUT if it is not installed or installed but not the correct version, 
uninstall it and download the right package with the right version and 
install


I started to do something that is not terrible and I would like your help 
to answer my problem


thank you very much in advance


here is the beginning of what I've done


if package { 'xyz' ensure=> '1.2'}
do nothing

else {
exec => rpm -e xyp-packagebadversion


file { "/tmp/xyz-packagegoodversion":
   ensure => 'present',
   source => "puppet:///modules/package/xyz-packagegoodversion"
}
package { "xyz":
ensure => '1.2',
provider => 'rpm',
source => "/tmp/xyz-packagegoodversion"
}

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/4835a155-1a2c-4857-b0a4-090dd1a28657%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] puppetdlock and puppet dashboard

2015-02-03 Thread puppetstan
Hi,

I have a problem with the command: puppet -t agent

# Puppet -t agent
Record: Ignoring --listen we onetime run
Record: Run of Puppet client configuration already in progress; skipping

There are many tutorials that say to delete the file
# rm /var/lib/puppet/state/puppetdlock

and the command # puppet -t agent working again

This solution is ok but my problem is if the puppet service restarts, I have 
the 
same problem again and on my puppet dashboard, my server has not reported

the problem is random, I have servers that do not have a problem (even 
release agent puppet) and others have this problem

Is someone found why this problem and have a solution?

Cdlt

Puppet Server
# Rpm -qa | grep puppet
puppet-2.7.26-1.el5
puppet-server-2.7.26-1.el5
puppet-dashboard-1.2.23-1.el5

Puppet Client
# Rpm -qa | grep puppet
puppet-2.7.26-1.el5

-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/e8336b71-26f1-4d3d-9caf-9dd3d0b31825%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Re: update package with condition

2015-01-15 Thread puppetstan

Hi John,

It's ok with unless = /bin/bash -c '[ `/bin/rpm -q --qf %{VERSION} 
facter` = 1.7.6 ]'

thanks a lot




Le mercredi 14 janvier 2015 18:34:58 UTC+1, puppetstan a écrit :

 Hi,

 I would like to update the package facter on all of my servers. (I can not 
 use INSTALL_OPTIONS because my puppet version is too old)

 I added a condition-- if the package facter is installed AND if facter 
 version is not facter-1.7.6-1.el6.x86_64.rpm I install the package but I 
 think 
 I have an error in my onlyif condition because it does not work.

 Can you have an idea please?
 Thanks in advance

 regards


 class paquet::redhat6-64 {

 package {'facter':
   provider = 'rpm',
 #  install_options = ['-Uvh'],
   source = /tmp/facter-1.7.6-1.el6.x86_64.rpm,
   require = File[/tmp/facter-1.7.6-1.el6.x86_64.rpm],
   notify = Service[puppet],
   }

file { /tmp/facter-1.7.6-1.el6.x86_64.rpm:
source = puppet:///modules/paquet/facter-1.7.6-1.el6.x86_64.rpm
}

 exec {'rpm updates':
 command = '/bin/rpm -Uvh /tmp/facter-1.7.6-1.el6.x86_64.rpm',
 onlyif = /bin/rpm -q facter and ('/usr/bin/facter -v' != 
 facter-1.7.6),
 }



-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/38ab035b-f407-4ae1-af08-d286058b3001%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Re: update package with condition

2015-01-15 Thread puppetstan
Hi

Yes it's a solution but for the moment i would like to use a condition ;) 
but i have a problem with it ;)

Regards

Le mercredi 14 janvier 2015 18:34:58 UTC+1, puppetstan a écrit :

 Hi,

 I would like to update the package facter on all of my servers. (I can not 
 use INSTALL_OPTIONS because my puppet version is too old)

 I added a condition-- if the package facter is installed AND if facter 
 version is not facter-1.7.6-1.el6.x86_64.rpm I install the package but I 
 think 
 I have an error in my onlyif condition because it does not work.

 Can you have an idea please?
 Thanks in advance

 regards


 class paquet::redhat6-64 {

 package {'facter':
   provider = 'rpm',
 #  install_options = ['-Uvh'],
   source = /tmp/facter-1.7.6-1.el6.x86_64.rpm,
   require = File[/tmp/facter-1.7.6-1.el6.x86_64.rpm],
   notify = Service[puppet],
   }

file { /tmp/facter-1.7.6-1.el6.x86_64.rpm:
source = puppet:///modules/paquet/facter-1.7.6-1.el6.x86_64.rpm
}

 exec {'rpm updates':
 command = '/bin/rpm -Uvh /tmp/facter-1.7.6-1.el6.x86_64.rpm',
 onlyif = /bin/rpm -q facter and ('/usr/bin/facter -v' != 
 facter-1.7.6),
 }



-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/58c72c23-1631-4116-b829-074ced379635%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Re: update package with condition

2015-01-15 Thread puppetstan


Le jeudi 15 janvier 2015 11:24:27 UTC+1, simon.o...@gmail.com a écrit :


 exec {'rpm updates':
 command = '/bin/rpm -Uvh /tmp/facter-1.7.6-1.el6.x86_64.rpm',
 onlyif = /bin/rpm -q facter and ('/usr/bin/facter -v' != 
 facter-1.7.6),
 }


 I think the problem lies in the onlyif rule, have you tried running that 
 command on a machine? It should be a valid command and result in an exit 
 code 0 to be true and nonzero to be false...


yes it's my problem my onlyif rule but i not understand where is the 
problem ...

regards

 /Simon 


-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/c6ea5eb7-c3d1-4a85-9a32-eded69f76daf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] update package with condition

2015-01-14 Thread puppetstan
Hi,

I would like to update the package facter on all of my servers. (I can not 
use INSTALL_OPTIONS because my puppet version is too old)

I added a condition-- if the package facter is installed AND if facter 
version is not facter-1.7.6-1.el6.x86_64.rpm I install the package but I think 
I have an error in my onlyif condition because it does not work.

Can you have an idea please?
Thanks in advance

regards


class paquet::redhat6-64 {

package {'facter':
  provider = 'rpm',
#  install_options = ['-Uvh'],
  source = /tmp/facter-1.7.6-1.el6.x86_64.rpm,
  require = File[/tmp/facter-1.7.6-1.el6.x86_64.rpm],
  notify = Service[puppet],
  }

   file { /tmp/facter-1.7.6-1.el6.x86_64.rpm:
   source = puppet:///modules/paquet/facter-1.7.6-1.el6.x86_64.rpm
   }

exec {'rpm updates':
command = '/bin/rpm -Uvh /tmp/facter-1.7.6-1.el6.x86_64.rpm',
onlyif = /bin/rpm -q facter and ('/usr/bin/facter -v' != 
facter-1.7.6),
}

-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/d4289154-27d7-489d-adea-c452b4d6c767%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Puppet Users] Problem with facter/ipaddress with puppet client 2.7

2014-12-24 Thread puppetstan
Thanks a lot for your answer : It's good now with facter 1.7

#  wget 
https://yum.puppetlabs.com/el/6/products/x86_64/facter-1.7.0-1.el6.x86_64.rpm

# rpm -Uvh facter-1.7.0-1.el6.x86_64.rpm


and it's OK

regards



Le mercredi 24 décembre 2014 00:45:40 UTC+1, Felix.Frank a écrit :

 On 12/23/2014 07:21 PM, puppetstan wrote: 
  
  Can you have this problem with this puppet and facter version? 

 No, that's a pretty serious issue. Please note that Facter 1.6.x is 
 obsolete - from my gut feeling, it's even more dusty than Puppet 2.7. 
 Any chance for you to get Facter 1.7? 


-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/c2a2d5f6-4a04-44d9-be2d-19693021ca1a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Problem with facter/ipaddress with puppet client 2.7

2014-12-23 Thread puppetstan
Hi,

On my centos6 and redhat6 i have puppet client update with puppet 2.7.25-2 
and facter-1.6.18-7 version with epel repo


My problem is with ipaddress facter, now i have


# facter
ipaddress = eth0  Link encap:Ethernet  HWaddr 
00:50:12:AZ:01:F9inet adr:172.17.03.21  Bcast:172.17.11.255  
Masque:255.255.255.0  adr inet6: fe80::250:56ff:feaf:f9/64 
Scope:Lien  UP BROADCAST RUNNING MULTICAST  MTU:1500  
Metric:1  RX packets:36042965 errors:0 dropped:0 overruns:0 
frame:0  TX packets:32410578 errors:0 dropped:0 overruns:0 
carrier:0  collisions:0 lg file transmission:1000   RX 
bytes:14080706754 (13.1 GiB)  TX bytes:41166159624 (38.3 GiB)loLink 
encap:Boucle localeinet adr:127.0.0.1  
Masque:255.0.0.0  adr inet6: ::1/128 Scope:H▒te  UP 
LOOPBACK RUNNING  MTU:16436  Metric:1  RX packets:10055 errors:0 
dropped:0 overruns:0 frame:0  TX packets:10055 errors:0 dropped:0 
overruns:0 carrier:0  collisions:0 lg file transmission:0   
RX bytes:626380 (611.6 KiB)  TX bytes:626380 (611.6 KiB)


before i had

# facter
ipaddress = x.x.x.x


Can you have this problem with this puppet and facter version?

regards

-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/d365a395-a472-41b9-ae25-31b7ddb08f87%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] file_line manifest

2014-04-14 Thread puppetstan
Hello 

I would like to check in my manifest the presence of a line in a 
configuration file under [main] and above [config] 

With my manifest configuration, it adds my line at the end of file 

Can you have an idea? 

thank you in advance



my manifest : 

file_line { yum protect:
line  = protect=1,
path  = /etc/yum.conf,
match = protect=.*$,
ensure = present
  }


my file : 

[main]
enabled = 1
gpgcheck = 1
priority = 10
protect = 1

[config]
enabled = 1



-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/1f6d3b6b-5479-47d3-9503-4fb39232f5b4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Puppet Users] puppet line

2014-03-26 Thread puppetstan
ah yes thanks a lot , it's better!!

Le mardi 25 mars 2014 18:16:21 UTC+1, Spencer Krum a écrit :

 Hi,

 I really think you want to use the file_line type from the 
 puppetlabs-stdlib module.

 Thanks,
 Spencer


 On Tue, Mar 25, 2014 at 10:11 AM, puppetstan 
 stanisla...@gmail.comjavascript:
  wrote:

 Hi,

 I have 2 problems with lines functions : the first and the second ;)

 My configuration :

 I create line functions (present, absent...)

 define line ($file, $line, $ensure = 'present') {
 case $ensure {
 default : {
 err(unknown ensure value ${ensure})
 }
 present : {
 exec {
 /bin/echo '${line}'  '${file}' :
 unless = /bin/grep -qFx '${line}' '${file}',
 logoutput = true
 }
 }
 absent : {
 exec {
 /bin/grep -vFx '${line}' '${file}' | tee '${file}'  
 /dev/null 21 :
 onlyif = /bin/grep -qFx '${line}' '${file}',
 logoutput = true
 }
 }
 ...
 ...
 ...


 Il create a profil class with line function


 class profil::redhat {
 line {'alias vim':
 file = '/root/.bashrc',
 line = alias vi=\'vim\',
 ensure = present
 }
 line {'alias color':
 file = '/root/.bashrc',
 line = alias grep=\'grep --color\',
 ensure = present
 }
 }


 First problem : a single quote problem

 My result in my '/root/.bashrc' file, i would like

 alias grep='grep --color'
 alias vi='vim'

 but i have

 alias grep=grep --color
 alias vi=vim

 Can you have an idea to protect single quote?


 Second problem : my manifect consider that *alias grep=grep --color*
  is absent in my '/root/.bashrc' file but is present so he create this 
 line all the time


 alias grep=grep --color
 alias grep=grep --color
 alias grep=grep --color
 alias grep=grep --color

 I think it's the space beetween grep and --color 

 can you have an idea

 thanks a lot in adavace
 regards

  -- 
 You received this message because you are subscribed to the Google Groups 
 Puppet Users group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to puppet-users...@googlegroups.com javascript:.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/puppet-users/3942e61e-4391-4f49-9309-9b3c3dc5c535%40googlegroups.comhttps://groups.google.com/d/msgid/puppet-users/3942e61e-4391-4f49-9309-9b3c3dc5c535%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.




 -- 
 Spencer Krum
 (619)-980-7820 


-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/b504e6d7-173a-4530-8b96-a5fa300ccfb8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] puppet line

2014-03-25 Thread puppetstan
Hi,

I have 2 problems with lines functions : the first and the second ;)

My configuration :

I create line functions (present, absent...)

define line ($file, $line, $ensure = 'present') {
case $ensure {
default : {
err(unknown ensure value ${ensure})
}
present : {
exec {
/bin/echo '${line}'  '${file}' :
unless = /bin/grep -qFx '${line}' '${file}',
logoutput = true
}
}
absent : {
exec {
/bin/grep -vFx '${line}' '${file}' | tee '${file}'  
/dev/null 21 :
onlyif = /bin/grep -qFx '${line}' '${file}',
logoutput = true
}
}
...
...
...


Il create a profil class with line function


class profil::redhat {
line {'alias vim':
file = '/root/.bashrc',
line = alias vi=\'vim\',
ensure = present
}
line {'alias color':
file = '/root/.bashrc',
line = alias grep=\'grep --color\',
ensure = present
}
}


First problem : a single quote problem

My result in my '/root/.bashrc' file, i would like

alias grep='grep --color'
alias vi='vim'

but i have

alias grep=grep --color
alias vi=vim

Can you have an idea to protect single quote?


Second problem : my manifect consider that *alias grep=grep --color*
 is absent in my '/root/.bashrc' file but is present so he create this line 
all the time


alias grep=grep --color
alias grep=grep --color
alias grep=grep --color
alias grep=grep --color

I think it's the space beetween grep and --color 

can you have an idea

thanks a lot in adavace
regards

-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/3942e61e-4391-4f49-9309-9b3c3dc5c535%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Puppet Users] exclusion/exception in server.pp file

2014-03-21 Thread puppetstan
Thanks for your answer, can you have an example with two zones please?

regards

Le jeudi 13 mars 2014 21:07:44 UTC+1, Jose Luis Ledesma a écrit :

 Facts + hiera is the short answer.

 If different IP ranges means different zones or sites, just create a 
 custom fact that returns the zone/site name. Setup the zone/site 
 hierarchically in hiera and set the data there. Setup a higher level with 
 the hostame in hiera and put the exceptions there.

 Regards
 El 13/03/2014 19:28, puppetstan stanisla...@gmail.com javascript: 
 escribió:

 Hi

 Thanks for your answer.

 You say This kind of code is screaming, but what is your solution when 
 you have a lot of server and the only solution is to locate with the IP 
 address

 your prefer :

 node1
 node2
 ...
 node 200
 ...
 ??

 regards


 Le mercredi 12 mars 2014 19:02:06 UTC+1, Jose Luis Ledesma a écrit :

 Hi,

   This kind of code is screaming for hiera!

 But if you want to continue this way, just set another if
 if $::ipaddress =~ /^172.17.3.4/ http://172.17.0.3/ {
Data here
 } elsif  $::ipaddress =~ /^172.17.3./ http://172.17.0.3/ {
 Another data here
 }
  El 12/03/2014 17:40, puppetstan stanisla...@gmail.com escribió:

 Hello 

 I have define in my server.pp file diferent zone and I defined my dns 
 servers 
 (resolv_servers). for my /etc/resolv.conf for this zone 


 #Zone 1
 if $::ipaddress =~ /^172.17.3./ {
 $ntp_heure = ntp.domain.fr
 $fusioninventory_proxy = http://proxy.domain.fr:8080;
 $resolv_servers = [ '172.30.12.11', '172.30.12.2' ]
 $resolv_search = domain.fr
 $yumconf_proxy = http://proxy.domain.fr:8080;
 $yumconf_exclude = kernel*
 include base::minimal
 }

 The problem is that in this zone one server (172.17.3.4) that does not 
 have 
 the same dns. Is it possible to make an exclusion on this server and 
 specify 
 other addresses ips in this config file? 

 thank you in advance

 -- 
 You received this message because you are subscribed to the Google 
 Groups Puppet Users group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to puppet-users...@googlegroups.com.
 To view this discussion on the web visit https://groups.google.com/d/
 msgid/puppet-users/dc908091-8fbe-4e46-a5bb-4e1d1b2e503c%
 40googlegroups.comhttps://groups.google.com/d/msgid/puppet-users/dc908091-8fbe-4e46-a5bb-4e1d1b2e503c%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.

  -- 
 You received this message because you are subscribed to the Google Groups 
 Puppet Users group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to puppet-users...@googlegroups.com javascript:.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/puppet-users/d79e3ecf-b10b-41e6-b1f3-71a73356f83d%40googlegroups.comhttps://groups.google.com/d/msgid/puppet-users/d79e3ecf-b10b-41e6-b1f3-71a73356f83d%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.



-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/d5357db6-3567-495d-8059-ec3d5cc23cec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Puppet Users] exclusion/exception in server.pp file

2014-03-13 Thread puppetstan
Hi

Thanks for your answer.

You say This kind of code is screaming, but what is your solution when you 
have a lot of server and the only solution is to locate with the IP address

your prefer :

node1
node2
...
node 200
...
??

regards


Le mercredi 12 mars 2014 19:02:06 UTC+1, Jose Luis Ledesma a écrit :

 Hi,

   This kind of code is screaming for hiera!

 But if you want to continue this way, just set another if
 if $::ipaddress =~ /^172.17.3.4/ http://172.17.0.3/ {
Data here
 } elsif  $::ipaddress =~ /^172.17.3./ http://172.17.0.3/ {
 Another data here
 }
  El 12/03/2014 17:40, puppetstan stanisla...@gmail.com javascript: 
 escribió:

 Hello 

 I have define in my server.pp file diferent zone and I defined my dns 
 servers 
 (resolv_servers). for my /etc/resolv.conf for this zone 


 #Zone 1
 if $::ipaddress =~ /^172.17.3./ {
 $ntp_heure = ntp.domain.fr
 $fusioninventory_proxy = http://proxy.domain.fr:8080;
 $resolv_servers = [ '172.30.12.11', '172.30.12.2' ]
 $resolv_search = domain.fr
 $yumconf_proxy = http://proxy.domain.fr:8080;
 $yumconf_exclude = kernel*
 include base::minimal
 }

 The problem is that in this zone one server (172.17.3.4) that does not have 
 the same dns. Is it possible to make an exclusion on this server and specify 
 other addresses ips in this config file? 

 thank you in advance

 -- 
 You received this message because you are subscribed to the Google Groups 
 Puppet Users group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to puppet-users...@googlegroups.com javascript:.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/puppet-users/dc908091-8fbe-4e46-a5bb-4e1d1b2e503c%40googlegroups.comhttps://groups.google.com/d/msgid/puppet-users/dc908091-8fbe-4e46-a5bb-4e1d1b2e503c%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.



-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/d79e3ecf-b10b-41e6-b1f3-71a73356f83d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Re: my puppets clients are unreachable

2014-03-13 Thread puppetstan
Thanks for you answer 

I'll look mcollective

regards

Le mardi 11 mars 2014 17:35:18 UTC+1, puppetstan a écrit :

 Hello 

 After to change a network device beetween my puppetmaster and my puppets 
 clients my puppetmaster, my puppets clients are unreachable.

 I changed a network device in front of a zone server. I need to edit the 
 file / etc / resolv.conf for all servers behind this network with my 
 puppetmaster but my puppets clients are unreachable, The puppet-dasboardsay : 
 Unresponsive. 

 I m obliged to go to each server and restart puppet client service on 
 each server so that it works again 

 Is there another solution because i have a lot of puppets clients? 

 thank you in advance


-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/cd3820e9-be36-49ce-a7d8-bf149faecb65%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Re: my puppets clients are unreachable

2014-03-12 Thread puppetstan
Hi

Thanks for your answer but its not a DNS problem because i not join my 
puppet client.

After to change a network device beetween my puppetmaster and my puppets 
clients, all my puppet client have this problem --

#/etc/init.d/puppet status
puppetd is dead but pid file exist


My puppet client lose the connection with a new device beetween my 
puppemaster and my puppet client and stop puppet daemon..

this is not very reassuring

Le mardi 11 mars 2014 17:35:18 UTC+1, puppetstan a écrit :

 Hello 

 After to change a network device beetween my puppetmaster and my puppets 
 clients my puppetmaster, my puppets clients are unreachable.

 I changed a network device in front of a zone server. I need to edit the 
 file / etc / resolv.conf for all servers behind this network with my 
 puppetmaster but my puppets clients are unreachable, The puppet-dasboardsay : 
 Unresponsive. 

 I m obliged to go to each server and restart puppet client service on 
 each server so that it works again 

 Is there another solution because i have a lot of puppets clients? 

 thank you in advance


-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/a4f4ec80-3da6-4ddb-8f6f-ca8ce559edd5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] exclusion/exception in server.pp file

2014-03-12 Thread puppetstan
Hello 

I have define in my server.pp file diferent zone and I defined my dns servers 
(resolv_servers). for my /etc/resolv.conf for this zone 


#Zone 1
if $::ipaddress =~ /^172.17.3./ {
$ntp_heure = ntp.domain.fr
$fusioninventory_proxy = http://proxy.domain.fr:8080;
$resolv_servers = [ '172.30.12.11', '172.30.12.2' ]
$resolv_search = domain.fr
$yumconf_proxy = http://proxy.domain.fr:8080;
$yumconf_exclude = kernel*
include base::minimal
}

The problem is that in this zone one server (172.17.3.4) that does not have 
the same dns. Is it possible to make an exclusion on this server and specify 
other addresses ips in this config file? 

thank you in advance

-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/dc908091-8fbe-4e46-a5bb-4e1d1b2e503c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] my puppets clients are unreachable

2014-03-11 Thread puppetstan
Hello 

After to change a network device beetween my puppetmaster and my puppets 
clients my puppetmaster, my puppets clients are unreachable.

I changed a network device in front of a zone server. I need to edit the 
file / etc / resolv.conf for all servers behind this network with my 
puppetmaster but my puppets clients are unreachable, The puppet-dasboardsay : 
Unresponsive. 

I m obliged to go to each server and restart puppet client service on each 
server so that it works again 

Is there another solution because i have a lot of puppets clients? 

thank you in advance

-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/03377948-73d6-4f45-b882-8019ff19f9dd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Re: Puppet agent not running automatically

2013-10-25 Thread puppetstan
Hi,

When you doing

/etc/init.d/puppet start 

it s not good?

regards

Le vendredi 25 octobre 2013 16:47:15 UTC+2, Michael Buckner a écrit :

 Brand new install or Foreman/Puppet. Puppet agent runs fine manually but 
 does not run automatically.

 Any suggestions?


-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users.
For more options, visit https://groups.google.com/groups/opt_out.


[Puppet Users] replace a value in file

2013-10-25 Thread puppetstan
Hi

I would lie replace a value in my config file 
/etc/default/fusioninventory-agent

MODE = daemon

and i would like replace cron by daemon


My manifest is this but is not good, can you have an idea? I think it s 
Simplevers.lns is not good..

augeas { 'fusioninventory mode':
   lens = 'Simplevars.lns',
incl = '/etc/default/fusioninventory-agent',
changes = [ 'set MODE daemon' ],
}


Regards

-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users.
For more options, visit https://groups.google.com/groups/opt_out.


[Puppet Users] Re: enablerepo option

2013-09-25 Thread puppetstan
Hi Sneha

Thanks a lot for your configuration but this solution is only good if i 
know latest version, but if i know, i'm oblige to modify all the time the 
configuration when there a new version but if i don't know latest version 
this solution is not possible...

An other idea is modifiy repo and change enabled=0 by enabled=1 and after 
install or update modify enabled=0 by enabled=1 ? Your opinion?
Regards and thanks


 [dag]
 gpgcheck=0
 enabled=1
 name=$releasever-$basearch on dag
 baseurl=http://serveurdags/RPMS.dag/
 


Le vendredi 13 septembre 2013 17:23:32 UTC+2, puppetstan a écrit :

 Hi

 I would like to use enablerepo option for activate repo and verify package 
 latest version

 my manifest :

 package { fusioninventory-agent: ensure = latest, enablerepo = [ 
 epel, remi ]; }

 there this patch : http://projects.puppetlabs.com/issues/2247 but it does 
 not work in my configuration

 Can you have the same problem or an other solution to activate multiple 
 rpm repo with enablerepo command?
 regards


-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users.
For more options, visit https://groups.google.com/groups/opt_out.


[Puppet Users] Re: enablerepo option

2013-09-23 Thread puppetstan
Hi

This configuration is not good if fusioninventory-agent is installed and 
puppet want to verify the latest version because yum command option is 
install and not update . This configuration is only good if 
fusioninventory-agent is not installed.

exec { 'fusioninventory-agent':
 command = 'yum -y *install *fusioninventory-agent --enablerepo=*',
 path = '/usr/bin',
}

package { 'fusioninventory-agent':
 ensure = latest,
require = Exec['fusioninventory-agent'],
}



This configuration is not good if fusioninventory-agent is not installed 
and puppet want to verify fusioninventory-agent is present  because yum 
command option is update and not install . This configuration is only 
good  if fusioninventory-agent is installed.

exec { 'fusioninventory-agent':
 command = 'yum -y *update *fusioninventory-agent --enablerepo=*',
 path = '/usr/bin',
}

package { 'fusioninventory-agent':
 ensure = latest,
require = Exec['fusioninventory-agent'],
}

What is the solution, an idea?

Regards




Le vendredi 13 septembre 2013 17:23:32 UTC+2, puppetstan a écrit :

 Hi

 I would like to use enablerepo option for activate repo and verify package 
 latest version

 my manifest :

 package { fusioninventory-agent: ensure = latest, enablerepo = [ 
 epel, remi ]; }

 there this patch : http://projects.puppetlabs.com/issues/2247 but it does 
 not work in my configuration

 Can you have the same problem or an other solution to activate multiple 
 rpm repo with enablerepo command?
 regards


-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users.
For more options, visit https://groups.google.com/groups/opt_out.


[Puppet Users] Re: enablerepo option

2013-09-21 Thread puppetstan
hi

thanks for your answer

but for use enablerepo option your oblige to pass the patch?


Le vendredi 13 septembre 2013 17:23:32 UTC+2, puppetstan a écrit :

 Hi

 I would like to use enablerepo option for activate repo and verify package 
 latest version

 my manifest :

 package { fusioninventory-agent: ensure = latest, enablerepo = [ 
 epel, remi ]; }

 there this patch : http://projects.puppetlabs.com/issues/2247 but it does 
 not work in my configuration

 Can you have the same problem or an other solution to activate multiple 
 rpm repo with enablerepo command?
 regards


-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users.
For more options, visit https://groups.google.com/groups/opt_out.


[Puppet Users] Re: enablerepo option

2013-09-21 Thread puppetstan
i think Exec is a good alternative

Le vendredi 13 septembre 2013 17:23:32 UTC+2, puppetstan a écrit :

 Hi

 I would like to use enablerepo option for activate repo and verify package 
 latest version

 my manifest :

 package { fusioninventory-agent: ensure = latest, enablerepo = [ 
 epel, remi ]; }

 there this patch : http://projects.puppetlabs.com/issues/2247 but it does 
 not work in my configuration

 Can you have the same problem or an other solution to activate multiple 
 rpm repo with enablerepo command?
 regards


-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users.
For more options, visit https://groups.google.com/groups/opt_out.


[Puppet Users] Re: enablerepo option

2013-09-21 Thread puppetstan
A question, if in my Exec toto i use command = yum -y --enablerepo=epel 
install fusioninventory-agent

and in my definition package there is :

ensure = latest,
require = Exec['toto'],

If i want upgrade package is not possible because the upgrade option in yum 
does not work 

and if in my Exec toto i use command = yum -y --enablerepo=epel upgrade 
fusioninventory-agent

If i want to install package is not possible because the install option in 
yum does not work 




Le vendredi 13 septembre 2013 17:23:32 UTC+2, puppetstan a écrit :

 Hi

 I would like to use enablerepo option for activate repo and verify package 
 latest version

 my manifest :

 package { fusioninventory-agent: ensure = latest, enablerepo = [ 
 epel, remi ]; }

 there this patch : http://projects.puppetlabs.com/issues/2247 but it does 
 not work in my configuration

 Can you have the same problem or an other solution to activate multiple 
 rpm repo with enablerepo command?
 regards


-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users.
For more options, visit https://groups.google.com/groups/opt_out.


[Puppet Users] Re: enablerepo option

2013-09-19 Thread puppetstan
or if you have an other idea to use enablerepo i m interesting

regards

Le vendredi 13 septembre 2013 17:23:32 UTC+2, puppetstan a écrit :

 Hi

 I would like to use enablerepo option for activate repo and verify package 
 latest version

 my manifest :

 package { fusioninventory-agent: ensure = latest, enablerepo = [ 
 epel, remi ]; }

 there this patch : http://projects.puppetlabs.com/issues/2247 but it does 
 not work in my configuration

 Can you have the same problem or an other solution to activate multiple 
 rpm repo with enablerepo command?
 regards


-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users.
For more options, visit https://groups.google.com/groups/opt_out.


[Puppet Users] enablerepo option

2013-09-13 Thread puppetstan
Hi

I would like to use enablerepo option for activate repo and verify package 
latest version

my manifest :

package { fusioninventory-agent: ensure = latest, enablerepo = [ 
epel, remi ]; }

there this patch : http://projects.puppetlabs.com/issues/2247 but it does 
not work in my configuration

Can you have the same problem or an other solution to activate multiple rpm 
repo with enablerepo command?
regards

-- 
You received this message because you are subscribed to the Google Groups 
Puppet Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users.
For more options, visit https://groups.google.com/groups/opt_out.