Commit 9af57742 authored by Franco Fichtner's avatar Franco Fichtner

openssl: fix issues with port version not finding config

Really don't want to ship this file locally so that others
might be encouraged to edit it (again).
parent ab28de2e
......@@ -138,7 +138,14 @@ if [ ! -f /conf/config.xml ]; then
/bin/mkdir -p /conf/backup
/bin/mkdir -p /conf/sshd
/bin/cp /usr/local/etc/config.xml /conf/config.xml
echo " done."
echo "done."
fi
# Bootstrap openssl.cnf for port if necessary
if [ ! -f /usr/local/openssl/openssl.cnf ]; then
echo -n "Bootstrapping openssl.cnf..."
/bin/cp /etc/ssl/openssl.cnf /usr/local/openssl/openssl.cnf
echo "done."
fi
# Disable APM on ATA drives. Leaving this on will kill drives long-term, especially laptop drives, by generating excessive Load Cycles.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment