]> arthur.barton.de Git - netatalk.git/blobdiff - distrib/debian/split-init/papd.init
Removed old files.
[netatalk.git] / distrib / debian / split-init / papd.init
diff --git a/distrib/debian/split-init/papd.init b/distrib/debian/split-init/papd.init
deleted file mode 100644 (file)
index db57216..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-
-test -x /usr/sbin/papd || exit 0
-
-case "$1" in
-start)
-       echo -n "Starting AppleTalk Printer Access Protocol Daemon: "
-       start-stop-daemon --start --exec /usr/sbin/papd
-       echo "papd."
-    ;;
-
-stop)
-       echo -n "Stopping AppleTalk Printer Access Protocol Daemon: "
-       start-stop-daemon --stop --quiet --oknodo --exec /usr/sbin/papd
-       echo "papd."
-    ;;
-    
-restart)
-       $0 force-reload
-    ;;
-
-force-reload)
-       echo -n "Restarting AppleTalk Printer Access Protocol Daemon: "
-       $0 stop > /dev/null 2>&1
-       echo -n "."
-       sleep 2
-       echo -n "."
-       $0 start > /dev/null 2>&1
-       echo "afpd."
-    ;;
-  
-*)
-    echo "Usage: /etc/init.d/papd {start|stop|restart|force-reload}" >&2
-    exit 1
-    ;;
-esac
-