mirror of
git://slackware.nl/current.git
synced 2024-11-16 07:48:02 +01:00
d8220d28e5
patches/packages/glibc-zoneinfo-2018e-noarch-2_slack13.0.txz: Rebuilt. Handle removal of US/Pacific-New timezone. If we see that the machine is using this, it will be automatically switched to US/Pacific.
13 lines
286 B
Bash
13 lines
286 B
Bash
#!/bin/sh
|
|
USE_DH=0
|
|
|
|
openssl req -new -x509 -days 365 -nodes \
|
|
-config ./openssl.cnf -out stunnel.pem -keyout stunnel.pem
|
|
|
|
test $USE_DH -eq 0 || openssl gendh >> stunnel.pem
|
|
|
|
openssl x509 -subject -dates -fingerprint -noout \
|
|
-in stunnel.pem
|
|
|
|
chmod 600 stunnel.pem
|
|
rm -f stunnel.rnd
|