close Warning: Can't use blame annotator:
svn blame failed on nutchez-0.1/debian/nutchez.postrm: 200029 - Couldn't perform atomic initialization
20014 - Can't find a temporary directory: Internal error

source: nutchez-0.1/debian/nutchez.postrm @ 93

Last change on this file since 93 was 80, checked in by waue, 17 years ago

NutchEz ..0.1

  • Property svn:executable set to *
File size: 303 bytes
RevLine 
1#!/bin/sh
2
3echo "$1"
4
5if [ "$1" != remove ]; then
6  exit 0
7fi
8
9#if [ -e $HOME/.nutchez ]; then
10#  rm -rf $HOME/.nutchez
11#fi
12
13for i in `sudo find /home/ -name ".nutchez"`; do
14  if [ -d $i ];then
15    echo "delete this dir :  $i"
16    rm -r $i
17  fi
18done
19
20rm -f /usr/local/sbin/nutchez*
21
22rm -rf /tmp/search
23
Note: See TracBrowser for help on using the repository browser.