mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 02:21:15 +02:00
13 lines
91 B
Bash
13 lines
91 B
Bash
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
case $2 in
|
|
DEINSTALL)
|
|
;;
|
|
POST-DEINSTALL)
|
|
;;
|
|
esac
|
|
exit 0
|
|
#EOF
|