Displaying 2 results from an estimated 2 matches for "job01".
2010 Dec 22
3
Using Puppet's client certificates for Apache, SSLVerifyClient
...site in
Apache to use ''SSLVerifyClient require'', and mimicked a request from a
Puppet node (previously signed, enrolled, and working) using curl. I
used the Puppet generated cert and key from this Puppet node in the
argument, looking something like this:
curl -k -v --cert certs/job01.vmserver02.dev.az.domain.local.pem --key
private_keys/job01.vmserver02.dev.az.toolbox.local.pem
https://10.1.0.165/test.htm
I got a little smile that the request did in fact work without error
(save having the client use the CA certificiate - I''ll re-visit that
later), but also concerned...
2005 May 22
4
Calling R from R and specifying "wait until script is finished"
Hello,
Let's say I have 50 R scripts to run. What would be the most efficient way
to run them?
I thought I could do multiple Rterms in a DOS batch file:
Ex:
Rterm <1.R> 1.txt
Rterm <2.R> 2.txt
...
Rterm <50.R> 50.txt
However, I'm afraid they will all open at the same time. I know I could
pause the batch file with something like:
PING 1.1.1.1 -n 1 -w 60000