Skip to content
Snippets Groups Projects
Commit d869c76e authored by Bob Mottram's avatar Bob Mottram
Browse files

Configurable gpg keyserver

parent 90a677d5
No related branches found
No related tags found
No related merge requests found
......@@ -781,6 +781,9 @@ function read_configuration {
fi
 
if [ -f $CONFIGURATION_FILE ]; then
if grep -q "GPG_KEYSERVER" $CONFIGURATION_FILE; then
GPG_KEYSERVER=$(grep "GPG_KEYSERVER" $CONFIGURATION_FILE | awk -F '=' '{print $2}')
fi
if grep -q "IPFS_PORT" $CONFIGURATION_FILE; then
IPFS_PORT=$(grep "IPFS_PORT" $CONFIGURATION_FILE | awk -F '=' '{print $2}')
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment