aboutsummaryrefslogtreecommitdiffstats
path: root/certs
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2015-12-23 12:07:03 +0100
committerKim Alvefur <zash@zash.se>2015-12-23 12:07:03 +0100
commit22f1422f51beee193f64a6e2c6c3986431922f0b (patch)
treecca9e59afaa30fa44b57716dd38e7961b0e0fa33 /certs
parent18b6111e743b371d555d308249d58960751eccb7 (diff)
downloadprosody-22f1422f51beee193f64a6e2c6c3986431922f0b.tar.gz
prosody-22f1422f51beee193f64a6e2c6c3986431922f0b.zip
certs/Makefile: Run key generation with a stricter umask (fixes a race condition)
Diffstat (limited to 'certs')
-rw-r--r--certs/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/certs/Makefile b/certs/Makefile
index f3854c5f..c709ff91 100644
--- a/certs/Makefile
+++ b/certs/Makefile
@@ -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