search for: kuntzagk

Displaying 9 results from an estimated 9 matches for "kuntzagk".

2011 Jun 30
4
using memorysize fact in manifests
...epending on memorysize. What I tried was if ($memorysize >= 256 * 1024*1024) { ... } But this fails because $memorysize is a string (and contains a "G") and can''t be compared to an int. Are all facts strings? How do I work with numbers? regards, Andreas -- Andreas Kuntzagk SystemAdministrator MDC Berlin / BIMSB Tel.: +49 30 9406 2997 -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users...
2011 Jun 17
5
ssh_authorized_key and NIS user
Hi, I have this resource definition: ssh_authorized_key { "nagios@login2": key => [REDACTED] user => "nagios", type => "ssh-dss", require => Service[''nis''], } This nagios user comes from NIS, yp.conf and nsswitch.conf are handled by puppet and configured before the key. I still get an "User does not
2007 Nov 23
3
webserver setup
Hi, I have setup a webserver on CentOS 4.5 with NameVirtualHost. Two VirtualHost should be reachable by port 80 from outside, while the third (default) should be only reachable by https from outside but by http from inside. Since all share the same IP firewalling seems to be out of question. So is there a way to restrict that in Apache config? regards, Andreas
2007 Dec 04
2
backup / compressed copy
Hi, I think about buying a NAS-server from Sun. To backup this server I want to use our central to-tape backup. For whatever reason ppl are asking me to make one compressed copy to disk and only backup this copy. So to reduce load I'd like to have a script that: identifies changed files only (using md5?) copies them and compresses them storeBackup.pl does something similar, but keeps
2011 May 02
2
exec resource: negate onlyif condition
Hi, today I''m stupid. How can I negate the test for execs onlyif? I want to run the exec onlyif command returns 1. regards, Andreas -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to
2011 May 13
5
puppet resource for group
Hi, Why doesn''t puppet resource group tell me who belongs to the group? Given the group such as: mg_team:x:501:smruph, cosman, msmith, mhankey With the command: puppet resource group mg_team only returns: group { ''mg_team'': gid => ''501'', ensure => ''present'' } I was expecting: group { ''mg_team'':
2007 Dec 18
1
5.0->5.1 upgrade problems
Hi, I try to upgrade a 5.0 desktop to 5.1. Some packages give me errors. Most important the kernel and e2fsprogs: [root at scarbo9 ~]# yum update kernel Loading "allowdowngrade" plugin Loading "installonlyn" plugin Loading "fastestmirror" plugin Setting up Update Process Setting up repositories extras 100% |=========================| 1.1 kB 00:00
2011 May 24
6
installing puppet client
Hi, how to install puppet client thru puppet master . My requirement is to install puppet client nearly 400 client servers. its difficult to install puppet client in all the servers by apt- get . share u r suggestions . Regards chebrian -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to
2007 Nov 16
1
weird cron problem
Hi, I'm having some problems with a script in /etc/cron.daily. It's quite simple: ------ #!/bin/sh touch /mnt/Backup/foo rsnapshot daily ----- So the touch gets executed, but the rsnapshot not. If I run manually > run-parts /etc/cron.daily/ everything's fine. Also when I run rsnapshot from roots crontab. So I have no idea what's the issue here. Any ideas / recommendations