search for: 9775

Displaying 20 results from an estimated 40 matches for "9775".

Did you mean: 975
2007 Apr 22
2
why centos 5 can not be installed in graphic mode on my pc
...A card is XFX6800XT,when installtion started ,it tell me that my VGA card is 6600GT,it detected wrong! And then installtion can not be run with normal display. so I install in text mode ,after installtion , I can't start Xwindow! I only could work with console. I tried to install "NVdriver 9775",an error occured ,an installtion terminated,I don't konw how to ....? It took me a long time to download centos 5,it is really "fun"! anyone help me ? thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/cen...
2011 May 20
4
finding consultants or full time puppet experts?
We are looking to hire a full time (or possibly a consultant) in Boston with experience in AWS and Puppet (or Chef :) http://www.fiksu.com/company/careers/cloud-operations-manager Any good leads on other places to look for someone like that? Thanks! -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to
2011 May 06
2
undefined method `[]' for nil:NilClass
I am getting this error on all my hosts, I can''t tell that it''s causing a problem, everything seems to be working fine. Fri May 06 12:52:16 -0700 2011 /Stage[main]// Resources[ssh_authorized_key] (err): Failed to generate additional resources using ''generate'': undefined method `[]'' for nil:NilClass We are using user and group purging for all uids/gids
2011 Jun 24
7
Different users within same exec
I have the following exec in my manifest : exec { some_exec: path => [ "/bin","/usr/bin","/usr/local/bin" ], command => "EXECUTE COMMAND 1", onlyif => "EXECUTE COMMAND 2", logoutput => "on_failure" } I want that the "COMMAND 1" should be executed by "USER 1" and "COMMAND 2"
2011 Jun 28
3
FIPS 140-2 compliance
I''ve just posted a feature request <http://projects.puppetlabs.com/issues/8120> relating to FIPS 140-2 compliance. I''m pointing to it here on the mailing list because I listed there five places where Puppet (nay, Ruby!) crashed while I was testing a deployment using FIPS mode on all hosts. It crashed because it tried to use MD5, and OpenSSL in FIPS mode doesn''t let
2013 Apr 29
3
[Announce] Samba 3.6.14 Available for Download
...t; * BUG 9650: New or deleted CUPS printerqueues are not recognized by Samba. * BUG 9807: wbinfo: Fix segfault in wbinfo_pam_logon. o Volker Lendecke <vl at samba.org> * BUG 9727: wkssvc: Fix NULL pointer dereference. * BUG 9736: smbd: Tune "dir" a bit. * BUG 9775: Fix segfault for "artificial" conn_structs. * BUG 9809: RHEL SPEC: Package dbwrap_tool man page. o Andreas Schneider <asn at samba.org> * BUG 9139: Fix the username map optimization. * BUG 9699: Fix adding case sensitive spn. * BUG 9723: Add a tool to migrate la...
2013 Apr 29
3
[Announce] Samba 3.6.14 Available for Download
...t; * BUG 9650: New or deleted CUPS printerqueues are not recognized by Samba. * BUG 9807: wbinfo: Fix segfault in wbinfo_pam_logon. o Volker Lendecke <vl at samba.org> * BUG 9727: wkssvc: Fix NULL pointer dereference. * BUG 9736: smbd: Tune "dir" a bit. * BUG 9775: Fix segfault for "artificial" conn_structs. * BUG 9809: RHEL SPEC: Package dbwrap_tool man page. o Andreas Schneider <asn at samba.org> * BUG 9139: Fix the username map optimization. * BUG 9699: Fix adding case sensitive spn. * BUG 9723: Add a tool to migrate la...
2011 Jan 26
4
"Registering" a node with a central service?
I have a couple of applications (backup, Cacti, Asset Tracking) where I want a node to have some package and config installed, and once that is done, some config to be done on another system to register the client with a central server. Is there a standard way to do this, short of having some kind of web service accessible from all the client systems? From my limited Puppet knowledge, anything I
2011 May 31
3
uploading files via REST?
Hello, I am a bit confused by the REST syntax - how can I PUT an arbitrary file in the bucket? Downloading works fine (Perl+LWP), see below, but for PUT I only see this line in the docs (http://docs.puppetlabs.com/guides/rest_api.html): PUT /{environment}/file_bucket_file/md5/{checksum} Should I compute the MD5 of the file and port its contents at the url ? my code: my $ua =
2011 Jan 28
1
Is this the best place to ask puppet on AIX questions?
Hello. First post. I have been messing around with puppet on AIX a bit recently and have all kinds of questions about how puppet integrates with AIX, specifically regarding how the "service" and "package" resources work with AIX''s native commands (installp/lssrc/etc). Some searches of this group didn''t yield much info on AIX. Is there a better forum out
2011 Apr 22
0
Re: [Puppet-dev] Re: Distributed Puppet Architecture and Management
...puppet-dev+unsubscribe@googlegroups.com. > For more options, visit this group at http://groups.google.com/group/puppet-dev?hl=en. > > -- ⎋ Puppet Labs Developer – http://puppetlabs.com ✉ Daniel Pittman <daniel@puppetlabs.com> ✆ Contact me via gtalk, email, or phone: +1 (877) 575-9775 ♲ Made with 100 percent post-consumer electrons -- 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+unsubscribe@g...
2011 May 06
0
Puppet 2.7.0RC2 released
...ll our RC releases are, on getting the committed features to the standard of quality we aspire to. Regards, Daniel, for the engineering team. -- ⎋ Puppet Labs Developer – http://puppetlabs.com ✉ Daniel Pittman <daniel@puppetlabs.com> ✆ Contact me via gtalk, email, or phone: +1 (877) 575-9775 ♲ Made with 100 percent post-consumer electrons -- 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+unsubscribe@g...
2011 May 20
1
puppet code to find out which is the first active network interface
I have a piece of shell script as below: ACTIVE_INTERFACE=`/sbin/ifconfig | /bin/gawk '' /^eth/ { print $1 } '' | /usr/bin/head -1` How do I translate it to puppet code, for example to assign the result as a variable to use? Thanks, -Haiyan -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send
2013 May 23
2
[Announce] Samba 4.0.6 Available for Download : crash of winbind after ls -la ...sysvol
...ads join' when called via stdin. > > > o David Disseldorp <ddiss at samba.org> > * BUG 9807: wbinfo: Fix segfault in wbinfo_pam_logon. > * BUG 9830: Fix panic in nt_printer_publish_ads. > > > o Volker Lendecke <vl at samba.org> > * BUG 9775: Fix segfault for "artificial" conn_structs in vfs_fake_perms. > * BUG 9809: Package new dbwrap_tool man page. > * BUG 9824: SMB signing and the async echo responder don't work > together. > * BUG 9832: talloc use after free in winbind4. > * BUG 9854: Fi...
2011 Feb 11
3
Active Directory join, stages, and AD accounts issues
I have a mostly working set of modules to replace our kickstart and about a dozen scripts. I am having issues with attempting to populate my AD account-owned user folders in the initial puppet run. The machines i am testing with are all CentOS 5.5 so far. I have defined 3 additional stages, Stage [init] -> Stage [pre] -> Stage [main] -> Stage [post] to attempt to fix this to no avail.
2011 May 05
1
variables inside a template for my hp ilo device
I am writing a hp ilo module to automatically assign a static ip that is derived from the IP of the system which is fed in via facter. I basically just need to change the network the ilo is connected to. The ruby code works great inside the irb console. However, puppet doesn''t seem to be able to use the variable I have derived from the ipaddress. This is my first template so I am not
2013 May 21
0
[Announce] Samba 4.0.6 Available for Download
...at samba.org> * BUG 9767: Fix 'net ads join' when called via stdin. o David Disseldorp <ddiss at samba.org> * BUG 9807: wbinfo: Fix segfault in wbinfo_pam_logon. * BUG 9830: Fix panic in nt_printer_publish_ads. o Volker Lendecke <vl at samba.org> * BUG 9775: Fix segfault for "artificial" conn_structs in vfs_fake_perms. * BUG 9809: Package new dbwrap_tool man page. * BUG 9824: SMB signing and the async echo responder don't work together. * BUG 9832: talloc use after free in winbind4. * BUG 9854: Fix NULL pointer dereferenc...
2013 May 21
0
[Announce] Samba 4.0.6 Available for Download
...at samba.org> * BUG 9767: Fix 'net ads join' when called via stdin. o David Disseldorp <ddiss at samba.org> * BUG 9807: wbinfo: Fix segfault in wbinfo_pam_logon. * BUG 9830: Fix panic in nt_printer_publish_ads. o Volker Lendecke <vl at samba.org> * BUG 9775: Fix segfault for "artificial" conn_structs in vfs_fake_perms. * BUG 9809: Package new dbwrap_tool man page. * BUG 9824: SMB signing and the async echo responder don't work together. * BUG 9832: talloc use after free in winbind4. * BUG 9854: Fix NULL pointer dereferenc...
2006 Jan 02
2
How to create "special" (source) file
Dear All, I'm a Marine Biologist using R (in a most informal and applied way) for a couple of years. Actually, I've been using R to analyse the results supporting my thesis. I would like to put together (in the same file) the data (.txt files) and the scripts files (.R files) for each chapter. How can I do this? Thanks in advance, Eduardo Esteves [[alternative HTML version deleted]]
2011 May 06
9
Generate "Compiled catalog"/yaml for a node?
Hi Experts, I remember we had this discussion before, but could find it. Can I run a command to generate a "Compiled catalog" for a specific node (on the master node)? And apply this on the client node? What are the limitations for doing this? Basically we have special handling for the webserver/CA part of puppet. Thank you very much! -Yushu