ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/mports/trunk/databases/couchdb/pkg-deinstall
Revision: 22167
Committed: Tue Dec 27 23:08:27 2016 UTC (7 years, 3 months ago) by laffer1
Content type: text/plain
File size: 261 byte(s)
Log Message:
add couchdb port. relax?

File Contents

# Content
1 #!/bin/sh
2
3 RMDIR=/bin/rmdir
4
5 COUCH_DBDIR=/var/db/couchdb
6 COUCH_LOGDIR=/var/log/couchdb
7 COUCH_RUNDIR=/var/run/couchdb
8
9 if [ "$2" = "POST-DEINSTALL" ]; then
10 for i in ${COUCH_RUNDIR} ${COUCH_DBDIR} ${COUCH_LOGDIR}; do
11 ${RMDIR} ${i} 2>/dev/null
12 done
13 fi
14
15 exit 0

Properties

Name Value
svn:eol-style native
svn:mime-type text/plain