diff options
Diffstat (limited to 'net-p2p/perlgcache/files')
-rw-r--r-- | net-p2p/perlgcache/files/digest-perlgcache-0.8.2 | 1 | ||||
-rw-r--r-- | net-p2p/perlgcache/files/reconfig | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/net-p2p/perlgcache/files/digest-perlgcache-0.8.2 b/net-p2p/perlgcache/files/digest-perlgcache-0.8.2 new file mode 100644 index 000000000000..906ba11547a6 --- /dev/null +++ b/net-p2p/perlgcache/files/digest-perlgcache-0.8.2 @@ -0,0 +1 @@ +MD5 a037360539c28bd9aeda0a2cdc63a809 perlgcache-0.8.2.tar.gz 15271 diff --git a/net-p2p/perlgcache/files/reconfig b/net-p2p/perlgcache/files/reconfig new file mode 100644 index 000000000000..119548776bee --- /dev/null +++ b/net-p2p/perlgcache/files/reconfig @@ -0,0 +1,19 @@ +#!/bin/bash + +function die () +{ + echo + echo "***" + echo "*** Fatal error: $*" + echo "***" + exit 1 +} + +if [ $1 = "start" -o $1 = "install" ]; then + cd "${MY_INSTALLDIR}" || die + if ( test -e data ); then + chmod 666 data + else + echo "Error: unable to find data directory." + fi +fi |