mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
51992523b4
Requested by: jmg
6 lines
135 B
Bash
6 lines
135 B
Bash
#!/bin/sh
|
|
if [ $2 = "DEINSTALL" ]; then
|
|
echo "Package $1 cannot be removed -- to do so will render your system useless."
|
|
exit 1
|
|
fi
|