search for: woof

Displaying 20 results from an estimated 23 matches for "woof".

Did you mean: wood
2012 May 31
6
Manage but don't create resource
Hi, I have certain situations where I want to manage user attributes, if the user already exists on a system, but not actually create them if they are missing. Is there a way to do this? I tried removing the explicit "ensure => present", but this seems to have no effect (i.e. missing users still created). I am running 2.7.9. Thanks, Alan -- You received this message because
2011 Feb 22
1
now S4 classes and packages
Hi again List: This time I have the following: > setClass("dog",representation(breed="numeric")) [1] "dog" > woof <- function(x=1:10) { + if(!is.numeric(x))stop("Must have numeric data") + y <- new("dog",breed=x) + return(y) + } > setMethod("plot","dog", + function(x,y,...) { + plot(x@breed,col="blue",type="l") + } + ) Creating a new generic...
2018 Mar 19
3
Permissions on /var/log/dovecot
/var/log/dovecot exists and has a lot of logging in it, but I get errors (in mail.log) on an always_bcc action in postfix: mail postfix/pipe[13015]: 401cvS0R8BzbSkL: to=<backup+073.kremels-kreme at doamin.tld>, relay=dovecot, delay=398058, delays=398045/13/0/0.04, dsn=4.3.0, status=deferred (temporary failure. Command output: Can't open log file /var/log/dovecot: Permission denied )
2002 May 11
0
rsync on Win32 doc
...edit the autoexec.bat shown there. Or, of course, you could use Win32 builds of Vim or Emacs to edit the real file ;-) Will someone please send this to wherever it needs to go to update that doc? Or at least tell me where to send it. ____________________________________________________________ woof! woof! I'm @dog.com Get your free @dog e-mail at http://www.dog.com
2008 Mar 31
0
log_buddy released - your helpful dev and debug buddy
...that will output the code in the block and its result - note that you *must* use the bracket block form - do...end is not supported. Examples ======= require ''lib/log_buddy'' LogBuddy.init a = "foo" @a = "my var" @@bar = "class var!" def bark "woof!" end module Foo; def self.module_method "hi!!" end end d { a } # logs "a = ''foo''" d { @a } # logs "@a = ''my var''" d { @@bar } # logs "@@bar = ''class var!'...
2013 Dec 03
1
Any R packages support conversion from PDF to XLS ?
...is in the PDF to begin with -- properly encoded text or just bitmapped images, for example. I would recommend you search around to see whether there's a related archive in a different format. And in any case, this has nothing to do with "XLS" , as Excel can read any unicode file. woof wrote > Hi! > Is there any packages support conversion from PDF to XLS ? > My raw data is from government website with PDF format only and updated > every month around hundreds files, so I need automated conversion. > The PDF is composed with Asian characters so I hope the packages...
2011 Oct 17
6
Managing entries in /etc/group (membership)
I have a requirement to manage membership to groups in /etc/group. These members do not need to be virtual users. I don''t see a way to do this through virtual users @group. How are others doing this? -- 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
2018 Mar 19
2
Permissions on /var/log/dovecot
...root:wheel, then there is a BIG problem right there!!! Logging is generally done by syslogd, not directly by the process. So no, dovecot is not writing to a file owned by root anymore than postfix is writing to mail.log which is also owned by root. In my specific case, it is rsyslogd. -- "Woof bloody woof."
2012 Dec 12
4
Converting puppet client to servr
Is there an easy way to convert a puppet client into being a puppet master? Here''s the scenario. I''m using puppet to configure all my systems, and would like it to be able to deploy a new puppet master as well. We have systems worldwide so having local puppet masters is very desirable for fault tolerance. So Kickstart (via cobbler) installs a puppet client during the initial
2011 Jul 30
22
Question about Helpers
Studying the RoR 3 Tutorial book by Michael Hartl and on page 345 there''s the code inside the SessionsHelper: _________________________________________________________ module SessionsHelper def sign_in(user) cookies.permanent.signed[:remember_token] = [user.id, user.sault] self.current_user = user end end __________________________________________________________ What is the purpose
2015 Nov 26
3
Networking Question
...Use VLANs instead of physical cables and physical switches. >https://en.m.wikipedia.org/wiki/VLAN >_______________________________________________ >CentOS mailing list >CentOS at centos.org >https://lists.centos.org/mailman/listinfo/centos -- Sent from my 'droid with K-9 Mail. Woof!
2017 Apr 20
4
Relocation design of different architecture
Thanks for the reply. I was just asking about in general whatever header files are there in Targets/ for different architectures are not including any function except this processRelocationRef() to be used in RuntimeDyldELF.cpp or RuntimeDyldCOFF.cpp or RuntimeDyldMachO.cpp and i think these files are the ones which are actually doing the relocation and linking work. So what purpose do these
2006 Sep 19
5
Are people using puppet in production?
Hi Guys, At work we need a better way of running our machines. We''ve got 14 machines around the world that we look after (mostly web servers but a few run mail and dns as you''d expect) and we currently maintain them individually. They all log to a central syslog server over an openvpn interface, but aside from that they tend to be in different locations. Could puppet be any
2012 Mar 12
3
postfix and spam, I am impressed
I have had the same email address since 1997 (when microsoft stole bob.com from me thanks to network solutions...) In the early days I of course was free with my email and used it everwhere. Fast forward to 2012, some 15 years later. woof..the amount of spam sent to me has always just kept getting worse and worse. On my centos 5 server I just used sendmail with spamassassin and it killed a lot. Still, 100s, sometimes more made it through. Then thunderbird would weed out more, learned as it went... Still, had an inbox with a lot...
2007 Feb 28
12
Specifying that code is called in a block
Not sure if this is possible currently. I have a section of code like this: ActiveRecord::Base.transaction do cow.save! duck.save! dog.save! end (Names changed to protect the innocent.) I''d like to specify that the saves run in a transaction. I can do ActiveRecord::Base.should_receive(:transaction).and_yield But is there any way to specify that the code is
2008 Apr 22
3
[LLVMdev] getting closer!
Ok, I *might* be getting this from the assembly code. The assembly code has: L_llvm_gc_root_chain$non_lazy_ptr: .indirect_symbol _llvm_gc_root_chain .long 0 and I see it being used in the function preamble. Is that a ref to an extern symbol or the def? I.e., is it referring to StackEntry *llvm_gc_root_chain; that I must have in my GC C code? (semispace.c has it) SO!
2017 Apr 21
2
Relocation design of different architecture
...>>>>> { >>>>> void Say() override { cout << "Meow!" << endl; } >>>>> } >>>>> >>>>> class Dog: public Animal >>>>> { >>>>> void Say() override { cout << "Woof!" << endl; } >>>>> } >>>>> >>>>> class Fish: public Animal >>>>> { >>>>> void Say() override { cout << "Blub!" << endl; } >>>>> } >>>>> >>>>>...
2017 Apr 21
2
Relocation design of different architecture
...> void Say() override { cout << "Meow!" << endl; } >>>>>>> } >>>>>>> >>>>>>> class Dog: public Animal >>>>>>> { >>>>>>> void Say() override { cout << "Woof!" << endl; } >>>>>>> } >>>>>>> >>>>>>> class Fish: public Animal >>>>>>> { >>>>>>> void Say() override { cout << "Blub!" << endl; } >>>>>>&...
2001 Jan 30
1
Bit pealing and streaming
Hi: Since I'm not a programmer and just want to get stuff worked out properly in my head, I'm posting this here. I just want to be sure I have all the concepts regarding vorbis and high sampling rates at low bit rates all sorted out. Note that this will involve questions, some of which I've been looking for answers to for some time. The way I understand things is that vorbis is
2015 Nov 26
7
Networking Question
Hello, I may have opportunity to obtain a Intel EXPI9404PTLBLK PRO/1000 PT Quad Port ethernet adapter at a significantly reduced price. What I would like to do with it, I want to make sure it is possible and sane before I buy it. -=- Device sits in CentOS box that connects directly to Internet via onboard network adapter. It pretty much only acts as a NAT router + dhcp server + unbound