56 lines
1.6 KiB
Bash
Executable File
56 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Main variables
|
|
OUTPUT_DIR="/home/bitcoin/.mynode/electrs"
|
|
HDD_DIR="/mnt/hdd/mynode/settings/electrs"
|
|
domain=myNode.local
|
|
commonname=myNode.local
|
|
|
|
mkdir -p $OUTPUT_DIR
|
|
mkdir -p $HDD_DIR
|
|
|
|
# Check for files on HDD and move to SD
|
|
if [ ! -f $OUTPUT_DIR/$domain.pem ] && [ -f $HDD_DIR/$domain.pem ]; then
|
|
cp -f $HDD_DIR/* $OUTPUT_DIR/
|
|
fi
|
|
|
|
if [ -f $OUTPUT_DIR/$domain.pem ]; then
|
|
# Verify files are stored on HDD
|
|
cp -f $OUTPUT_DIR/* $HDD_DIR/
|
|
|
|
exit 0
|
|
fi
|
|
|
|
# Change to your company details
|
|
country=US
|
|
state=myNode
|
|
locality=myNode
|
|
organization=myNode
|
|
organizationalunit=myNode
|
|
email=satoshi.nakamoto@example.com
|
|
password=dummypassword
|
|
|
|
# Generate a key
|
|
echo "Creating key"
|
|
openssl genrsa -des3 -passout pass:$password -out $OUTPUT_DIR/$domain.key 2048
|
|
|
|
# Remove passphrase from the key
|
|
echo "Removing passphrase from key"
|
|
openssl rsa -in $OUTPUT_DIR/$domain.key -passin pass:$password -out $OUTPUT_DIR/$domain.key
|
|
|
|
# Create the request
|
|
echo "Creating CSR"
|
|
openssl req -new -key $OUTPUT_DIR/$domain.key -out $OUTPUT_DIR/$domain.csr -passin pass:$password \
|
|
-subj "/C=$country/ST=$state/L=$locality/O=$organization/OU=$organizationalunit/CN=$commonname/emailAddress=$email"
|
|
|
|
# Create Certificate
|
|
echo "Creating Certificate"
|
|
openssl x509 -req -days 99999 -in $OUTPUT_DIR/$domain.csr -signkey $OUTPUT_DIR/$domain.key -out $OUTPUT_DIR/$domain.crt
|
|
|
|
echo "Creating PEM"
|
|
cat $OUTPUT_DIR/$domain.key > $OUTPUT_DIR/$domain.pem
|
|
echo "" >> $OUTPUT_DIR/$domain.pem
|
|
cat $OUTPUT_DIR/$domain.crt >> $OUTPUT_DIR/$domain.pem
|
|
|
|
# Put copy of files of HDD
|
|
cp -f $OUTPUT_DIR/* $HDD_DIR/ |