c666ca6186
trickle is a portable lightweight userspace bandwidth shaper. It can run in collaborative mode (together with trickled) or in stand alone mode. trickle works by taking advantage of the unix loader preloading. Essentially it provides, to the application, a new version of the functionality that is required to send and receive data through sockets. It then limits traffic based on delaying the sending and receiving of data over a socket. trickle runs entirely in userspace and does not require root privileges. WWW: http://monkey.org/~marius/trickle/ Maintainer Jolan Luff <jolan@cryptonomicon.org>
25 lines
567 B
Bash
25 lines
567 B
Bash
#!/bin/sh
|
|
# $OpenBSD: DEINSTALL,v 1.1.1.1 2003/04/13 08:07:50 pvalchev Exp $
|
|
|
|
set -e
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
|
CONFFILE=${SYSCONFDIR}/trickled.conf
|
|
|
|
if [ -f ${CONFFILE} ];
|
|
then
|
|
echo
|
|
echo "+---------------"
|
|
echo "| To completely deinstall the $1 package you need to perform"
|
|
echo "| this step as root:"
|
|
echo "|"
|
|
echo "| rm -f ${CONFFILE}"
|
|
echo "|"
|
|
echo "| Do not do this if you plan on re-installing $1"
|
|
echo "| at some future time."
|
|
echo "+---------------"
|
|
echo
|
|
fi
|
|
|
|
exit 0
|