mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-15 09:59:16 +00:00
35 lines
1.0 KiB
Bash
Executable File
35 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
# Only generate if external drive is available
|
|
|
|
|
|
# Check for dhparam on SD Card
|
|
if [ ! -f /etc/ssl/certs/dhparam.pem ]; then
|
|
# Check for dhparam on HDD
|
|
if [ -f /mnt/hdd/mynode/settings/dhparam.pem ]; then
|
|
echo "Using dhparam.pem from HDD"
|
|
cp -f /mnt/hdd/mynode/settings/dhparam.pem /etc/ssl/certs/dhparam.pem
|
|
else
|
|
# Gen dhparam
|
|
echo "Generating dhparam.pem"
|
|
time openssl dhparam -out /tmp/dhparam.pem 2048
|
|
cp -f /tmp/dhparam.pem /etc/ssl/certs/dhparam.pem
|
|
# If HDD is available, move copy there
|
|
if [ -d /mnt/hdd/mynode/settings ]; then
|
|
cp -f /tmp/dhparam.pem /mnt/hdd/mynode/settings/dhparam.pem
|
|
fi
|
|
fi
|
|
sync
|
|
else
|
|
echo "dharam.pem already created"
|
|
fi
|
|
|
|
# If HDD is available and not on HDD, make backup copy
|
|
if [ -d /mnt/hdd/mynode/settings ]; then
|
|
if [ ! -f /mnt/hdd/mynode/settings/dhparam.pem ]; then
|
|
cp -f /etc/ssl/certs/dhparam.pem /mnt/hdd/mynode/settings/dhparam.pem
|
|
fi
|
|
fi |