mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-27 00:10:29 +00:00
19 lines
534 B
Text
19 lines
534 B
Text
![]() |
#!/bin/sh
|
||
|
|
||
|
if [ `whoami` != "root" ]; then
|
||
|
echo "You must be root to generate certificates."
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
echo -n "==> Generating certificate for Partimage/PartimageD SSL... "
|
||
|
cd /etc/partimaged
|
||
|
openssl req -new -x509 -outform PEM > partimaged.csr
|
||
|
openssl rsa -in privkey.pem -out partimaged.key
|
||
|
rm privkey.pem
|
||
|
openssl x509 -in partimaged.csr -out partimaged.cert -signkey partimaged.key
|
||
|
rm partimaged.csr
|
||
|
chmod 600 partimaged.key
|
||
|
chmod 600 partimaged.cert
|
||
|
chown partimag:partimag partimaged.key
|
||
|
chown partimag:partimag partimaged.cert
|