certs/Makefile: Run key generation with a stricter umask (fixes a race condition)

This commit is contained in:
Kim Alvefur 2015-12-23 12:07:03 +01:00
parent 18b6111e74
commit 22f1422f51

View file

@ -26,5 +26,5 @@ keysize=2048
sed 's,example\.com,$*,g' openssl.cnf > $@
%.key:
openssl genrsa $(keysize) > $@
@chmod 400 $@
umask 0077 && openssl genrsa -out $@ $(keysize)
@chmod 400 $@ -c