mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 02:21:15 +02:00
17 lines
199 B
Bash
17 lines
199 B
Bash
#!/bin/sh
|
|
set -x
|
|
RUN_DIR="%%RUN_DIR%%"
|
|
LOG_DIR="%%LOG_DIR%%"
|
|
|
|
case $2 in
|
|
DEINSTALL)
|
|
;;
|
|
POST-DEINSTALL)
|
|
for dir in ${LOG_DIR} ${RUN_DIR}; do
|
|
rmdir -p ${dir}
|
|
done
|
|
;;
|
|
esac
|
|
exit 0
|
|
#EOF
|