#!/bin/bash # # postrm - Script de post-désinstallation RPM pour ja4sentinel # Compatible CentOS 7, Rocky Linux 8/9/10 # set -e echo "==> ja4sentinel: Running post-removal script..." # Reload systemd after removal if [ -x /bin/systemctl ]; then echo "==> ja4sentinel: Reloading systemd daemon..." /bin/systemctl daemon-reload fi echo "==> ja4sentinel: Post-removal complete." exit 0