10 lines
87 B
Bash
10 lines
87 B
Bash
#!/bin/sh
|
|
|
|
if [ x$2 != xDEINSTALL ]; then
|
|
exit
|
|
fi
|
|
|
|
rm -rf /var/mnogosearch
|
|
|
|
exit 0
|