aboutsummaryrefslogtreecommitdiffstats
path: root/certs
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-11-03 23:56:17 +0100
committerKim Alvefur <zash@zash.se>2016-11-03 23:56:17 +0100
commit24b2036f9e4292e15e1d313df6bbfd8bf00ad27d (patch)
treeeb56d846824ef87f3d641379b8c719999342efb0 /certs
parenta6a85dc46679f0b252e1937233e1e8828f0addbc (diff)
downloadprosody-24b2036f9e4292e15e1d313df6bbfd8bf00ad27d.tar.gz
prosody-24b2036f9e4292e15e1d313df6bbfd8bf00ad27d.zip
certs/Makefile: Remove more -c flags
Diffstat (limited to 'certs')
-rw-r--r--certs/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/certs/Makefile b/certs/Makefile
index 6a8b140f..fd4a2932 100644
--- a/certs/Makefile
+++ b/certs/Makefile
@@ -22,7 +22,7 @@ keysize=2048
umask 0077 && touch $*.key
openssl req -new -newkey rsa:$(keysize) -nodes -keyout $*.key \
-sha256 -utf8 -config $^ -out $@
- @chmod 400 $*.key -c
+ @chmod 400 $*.key
%.csr: %.key
openssl req -new -key $^ -utf8 -subj /CN=$* -out $@
@@ -31,7 +31,7 @@ keysize=2048
umask 0077 && touch $*.key
openssl req -new -newkey rsa:$(keysize) -nodes -keyout $*.key \
-utf8 -subj /CN=$* -out $@
- @chmod 400 $*.key -c
+ @chmod 400 $*.key
# Self signed
%.crt: %.cnf %.key
@@ -42,7 +42,7 @@ keysize=2048
umask 0077 && touch $*.key
openssl req -new -x509 -newkey rsa:$(keysize) -nodes -keyout $*.key \
-days 365 -sha256 -utf8 -config $(firstword $^) -out $@
- @chmod 400 $*.key -c
+ @chmod 400 $*.key
%.crt: %.key
openssl req -new -x509 -key $^ -days 365 -sha256 -utf8 -subj /CN=$* -out $@
@@ -51,7 +51,7 @@ keysize=2048
umask 0077 && touch $*.key
openssl req -new -x509 -newkey rsa:$(keysize) -nodes -keyout $*.key \
-days 365 -sha256 -out $@ -utf8 -subj /CN=$*
- @chmod 400 $*.key -c
+ @chmod 400 $*.key
# Generate a config from the example
%.cnf: