hongbo-miao/hongbomiao.com

View on GitHub
data-storage/timescaledb/dummy_iot/bin/ubuntu/uninstall_timescaledb.sh

Summary

Maintainability
Test Coverage
#!/usr/bin/env bash
set -e

echo "# Uninstall TimescaleDB"
sudo systemctl stop postgresql
sudo apt purge --yes postgresql postgresql-*
sudo rm -r /var/lib/postgresql/backups/
sudo rm -r /var/lib/postgresql/pg_wal_archive/
echo "=================================================="