6c2154429f
PR: 155518 Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> (maintainer)
16 lines
232 B
Bash
16 lines
232 B
Bash
#!/bin/sh
|
|
|
|
if [ x"$2" != x"POST-DEINSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
cat <<EOF
|
|
If you wish to completely delete erlyvideo, please remove
|
|
this directories manually:
|
|
/var/lib/erlyvideo
|
|
/var/log/erlyvideo
|
|
/var/cache/erlyvideo
|
|
EOF
|
|
|
|
exit 0
|