trouble launching an automated script to create a self-signed certificate

2006-03-02 Thread Shulman Alexandre
I'm tryingto write a script able to create a self-signed certificate automaticaly. I'm using the command:openssl req -new -key${KEY} -x509 -out ${CERT}Unfortunately, I have to enter the DN information manualy.How can I get through the manual request to get the script to do it itself? Nouveau :

RE: trouble launching an automated script to create a self-signed certificate

2006-03-02 Thread David C. Partridge
This may seem a stupid question, but why do you want or need to do this? You can generate an SS cert with a validity of (say 1 year) and just use it without needing to generate a new one every time the system starts up. Is there something special about the environment that I'm not aware of? D.

Re: trouble launching an automated script to create a self-signed certificate

2006-03-02 Thread Julien Demoor
Shulman Alexandre wrote: I'm trying to write a script able to create a self-signed certificate automaticaly. I'm using the command: openssl req -new -key ${KEY} -x509 -out ${CERT} Unfortunately, I have to enter the DN information manualy. How can I get through the manual request to get the

Re: trouble launching an automated script to create a self-signed certificate

2006-03-02 Thread Dmitry Belyavsky
Greetings! On Thu, 2 Mar 2006, Shulman Alexandre wrote: I'm trying to write a script able to create a self-signed certificate automaticaly. I'm using the command: openssl req -new -key ${KEY} -x509 -out ${CERT} Unfortunately, I have to enter the DN information manualy. How can I get

Re: trouble launching an automated script to create a self-signed certificate

2006-03-02 Thread Brian Candler
On Thu, Mar 02, 2006 at 11:52:50AM +0100, Shulman Alexandre wrote: I'm trying to write a script able to create a self-signed certificate automaticaly. I'm using the command: openssl req -new -key ${KEY} -x509 -out ${CERT} Unfortunately, I have to enter the DN information manualy.

Re: trouble launching an automated script to create a self-signed certificate

2006-03-02 Thread Dr. Stephen Henson
On Thu, Mar 02, 2006, Shulman Alexandre wrote: I'm trying to write a script able to create a self-signed certificate automaticaly. I'm using the command: openssl req -new -key ${KEY} -x509 -out ${CERT} Unfortunately, I have to enter the DN information manualy. How can I get through the

Re: trouble launching an automated script to create a self-signed certificate

2006-03-02 Thread Shulman Alexandre
Brian Candler [EMAIL PROTECTED] a écrit:On Thu, Mar 02, 2006 at 11:52:50AM +0100, Shulman Alexandre wrote: I'm trying to write a script able to create a self-signed certificate automaticaly. I'm using the command: openssl req -new -key ${KEY} -x509 -out ${CERT} Unfortunately, I have to enter