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

Record onion service domains

parent 27368c94
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,17 @@ function add_onion_service {
echo $"${onion_service_name} onion site hostname not found"
exit 76362
fi
echo $(cat /var/lib/tor/hidden_service_${onion_service_name}/hostname)
onion_address=$(cat /var/lib/tor/hidden_service_${onion_service_name}/hostname)
# Record the domain in the completion file
if ! grep "${onion_service_name} onion domain" $COMPLETION_FILE; then
echo "${onion_service_name} onion domain:${onion_address}" >> $COMPLETION_FILE
else
sed -i "s|${onion_service_name} onion domain.*|${onion_service_name} onion domain:${onion_address}|g" $COMPLETION_FILE
fi
echo $onion_address
}
function set_default_onion_domains {
......
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