← Back to team overview

ubuntu-bugcontrol team mailing list archive

[Merge] lp:~xnox/qa-regression-testing/sb-make-pem-certs-1 into lp:qa-regression-testing

 

Dmitrijs Ledkovs has proposed merging lp:~xnox/qa-regression-testing/sb-make-pem-certs-1 into lp:qa-regression-testing.

Requested reviews:
  Jamie Strandboge (jdstrand)
  Ubuntu Bug Control (ubuntu-bugcontrol)

For more details, see:
https://code.launchpad.net/~xnox/qa-regression-testing/sb-make-pem-certs-1/+merge/158982
-- 
https://code.launchpad.net/~xnox/qa-regression-testing/sb-make-pem-certs-1/+merge/158982
Your team Ubuntu Bug Control is requested to review the proposed merge of lp:~xnox/qa-regression-testing/sb-make-pem-certs-1 into lp:qa-regression-testing.
=== added file 'notes_testing/secure-boot/keys/Makefile'
--- notes_testing/secure-boot/keys/Makefile	1970-01-01 00:00:00 +0000
+++ notes_testing/secure-boot/keys/Makefile	2013-04-15 17:30:35 +0000
@@ -0,0 +1,12 @@
+.SUFFIXES: .der .pem
+
+.der.pem:
+	openssl x509 -inform DER -in $< -outform PEM -out $@
+
+all: $(subst .der,.pem,$(wildcard *.der)) canonical-master-signing-public-chain.pem
+
+canonical-master-signing-public-chain.pem: canonical-master-public.pem canonical-signing-public.pem
+	cat $? >> $@
+
+clean:
+	rm -f *.pem


Follow ups