Files
bitoj_python/packaging/ubuntu/postrm
2026-02-08 14:33:02 +08:00

13 lines
153 B
Bash

#!/bin/sh
set -e
if command -v systemctl >/dev/null 2>&1; then
systemctl daemon-reload
fi
if [ "$1" = "purge" ]; then
rm -rf /etc/bitoj
fi
exit 0