Files
buckit/packaging/scripts/postremove.sh
abuckit 359e4edef9 fix: resolve CI failures in shfmt and decom tests
- packaging/scripts: convert 4-space indentation to tabs (shfmt)
- docs/distributed/decom*.sh: add consistent trailing slashes to
  mc ls bucket paths so before/after diffs compare identical formats
2026-05-19 11:30:13 -04:00

14 lines
375 B
Bash
Executable File

#!/bin/sh
set -e
if command -v systemctl >/dev/null 2>&1; then
systemctl daemon-reload >/dev/null 2>&1 || true
fi
# Intentionally do NOT delete the buckit user/group on removal.
# It may own data on attached storage; orphaning files with a
# numeric UID is worse than leaving an unused system user.
# Operators who want full cleanup can `userdel buckit` manually.
exit 0