1 2 3 4 5 6 7 8 9 10 11 12
#!/bin/bash set -e # Post-removal script for transmutation # This script runs after the package is removed if [ "$1" = "purge" ]; then echo "Transmutation removed." fi exit 0