X-Git-Url: http://gitweb/?a=blobdiff_plain;f=openssl%2Fmksslcert.sh;h=4b10ef90a6a6ab2a6d2f5b244e775ab2218e52a3;hb=c3125ac24f54c9e5b1c05cf93f65ad1ef914c74d;hp=9cca3fb81754fcfb5f21ab615fbdf13b5a2c1525;hpb=6dca1d213a39ee6af51632926e8b7c8914215cd9;p=crossrootfs.git diff --git a/openssl/mksslcert.sh b/openssl/mksslcert.sh index 9cca3fb..4b10ef9 100755 --- a/openssl/mksslcert.sh +++ b/openssl/mksslcert.sh @@ -6,7 +6,7 @@ # the local hostname or the given one # Fallback to localhost if not set. # -# Jürgen Daubert, jue at jue dot li +# Juergen Daubert, jue at crux dot nu print_help() { @@ -29,9 +29,9 @@ main() { FQDN="$3" fi INFO=".\n.\n.\n.\n.\n$FQDN\nroot@$FQDN" - OPTS="req -new -nodes -x509 -days 365 -newkey rsa:1024" + OPTS="req -new -nodes -x509 -days 365 -newkey rsa:2048" - echo -e $INFO | openssl $OPTS -out $CRT -keyout $KEY 2> /dev/null + printf "$INFO\n" | openssl $OPTS -out $CRT -keyout $KEY 2> /dev/null if [ $? -ne 0 ]; then echo "Error: creating of certificate failed"