|
From: Sascha Z. <zi...@se...> - 2004-07-08 11:11:04
|
Stephane Bailliez <ste...@be...> writes: > exec ./ejbca.sh ca init $ca_name "$ca_dn" $ca_keysize $ca_validity I saw this kind of shell scripting in different places in EJBCA. In most cases it is an error not to quote shell variables. So I strongly recommend to use this coding style: exec ./ejbca.sh ca init "$ca_name" "$ca_dn" "$ca_keysize" "$ca_validity" cu Sascha -- secunet Security Networks AG, Im Teelbruch 116, 45219 Essen Tel: +49-2054-123-408 Fax: +49-2054-123-123 PGP: FBE2 A49B 6526 C1B4 7F10 24E4 5004 7C27 6E9A 9698 |