diff options
author | Mukund Sivaraman <muks@banu.com> | 2008-03-30 17:01:29 -0700 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2008-03-30 17:01:29 -0700 |
commit | e6d9bb21509b700f7e71f667faf3c8fe73691985 (patch) | |
tree | 080aff34297a8570a58943ba58882aa1474e88db /rpm/tinyproxy-initd | |
parent | 14edbda9f0397a4981181eec0cbf4f192fa2d295 (diff) | |
download | tinyproxy-e6d9bb21509b700f7e71f667faf3c8fe73691985.tar.gz tinyproxy-e6d9bb21509b700f7e71f667faf3c8fe73691985.zip |
Removed old RPM packaging files
Diffstat (limited to 'rpm/tinyproxy-initd')
-rw-r--r-- | rpm/tinyproxy-initd | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/rpm/tinyproxy-initd b/rpm/tinyproxy-initd deleted file mode 100644 index a1896bd..0000000 --- a/rpm/tinyproxy-initd +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash - -# initfile for tinyproxy -# -# description: A small, efficient HTTP/SSL proxy daemon. -# -# processname: tinyproxy -# -# chkconfig 2345 -# - -. /etc/rc.d/init.d/functions - -case "$1" in - start) - echo -n "Starting tinyproxy: " - daemon /usr/sbin/tinyproxy - touch /var/lock/subsys/tinyproxy - echo - ;; - stop) - echo -n "Shutting down tinyproxy: " - killproc tinyproxy - rm -f /var/lock/subsys/tinyproxy - echo - ;; - restart) - $0 stop - $0 start - ;; - status) - status tinyproxy - ;; - *) - echo "Usage: tinyproxy {start|stop|restart|status}" - exit 1 -esac - -exit 0 - - |