Fork of official Bluesky PDS (Personal Data Server).

Fix typos in installer.sh (#292)

* Fix typos
* Remove duplicate package `jq` from `REQUIRED_SYSTEM_PACKAGES` list
*

authored by abraj.tngl.sh and committed by

GitHub 7b1d82d5 7c131d4a

+3 -4
+3 -4
installer.sh
··· 11 11 DISTRIB_CODENAME="$(lsb_release --codename --short || true)" 12 12 DISTRIB_ID="$(lsb_release --id --short | tr '[:upper:]' '[:lower:]' || true)" 13 13 14 - # Secure generator comands 14 + # Secure generator commands 15 15 GENERATE_SECURE_SECRET_CMD="openssl rand --hex 16" 16 16 GENERATE_K256_PRIVATE_KEY_CMD="openssl ecparam --name secp256k1 --genkey --noout --outform DER | tail --bytes=+8 | head --bytes=32 | xxd --plain --cols 32" 17 17 ··· 31 31 openssl 32 32 sqlite3 33 33 xxd 34 - jq 35 34 " 36 35 # Docker packages. 37 36 REQUIRED_DOCKER_PACKAGES=" ··· 123 122 fi 124 123 125 124 # Check if PDS is already installed. 126 - if [[ -e "${PDS_DATADIR}/pds.sqlite" ]]; then 125 + if [[ -e "${PDS_DATADIR}/account.sqlite" ]]; then 127 126 echo 128 127 echo "ERROR: pds is already configured in ${PDS_DATADIR}" 129 128 echo ··· 393 392 fi 394 393 395 394 # 396 - # Download and install pdadmin. 395 + # Download and install pdsadmin. 397 396 # 398 397 echo "* Downloading pdsadmin" 399 398 curl \