mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
739e434436
PR: ports/166060 Submitted by: jgh@ Approved by: maintainer, feld@feld.me Feature safe: yes
11 lines
200 B
Bash
11 lines
200 B
Bash
#!/bin/sh
|
|
|
|
RMDIR=/bin/rmdir
|
|
|
|
if [ "$2" = POST-DEINSTALL ]; then
|
|
for i in /var/db/aox/jail /var/db/aox/messages /var/run/aox; do
|
|
${RMDIR} ${i} 2>/dev/null
|
|
done
|
|
${RMDIR} /var/db/aox 2>/dev/null
|
|
fi
|