Mirror from bluesky-social/pds
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

pdsadmin/account: little fixups

+11
+11
pdsadmin/account.sh
··· 81 81 exit 1 82 82 fi 83 83 84 + # Wait for the TLS certificate to be issued. 85 + HANDLE_WELLKNOWN_URL="https://${handle}/.well-known/atproto-did" 86 + echo "* Obtaining TLS certificate" 87 + while true; do 88 + echo "Requesting ${HANDLE_WELLKNOWN_URL}" 89 + if curl_get "${HANDLE_WELLKNOWN_URL}" >/dev/null 2>&1; then 90 + break 91 + fi 92 + sleep 0.5 93 + done 94 + 84 95 echo 85 96 echo "Account created successfully!" 86 97 echo "-----------------------------"