diff options
Diffstat (limited to 'testing/libc6/nscd.initd')
-rw-r--r-- | testing/libc6/nscd.initd | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/testing/libc6/nscd.initd b/testing/libc6/nscd.initd deleted file mode 100644 index 949c49e82a..0000000000 --- a/testing/libc6/nscd.initd +++ /dev/null @@ -1,18 +0,0 @@ -#!/sbin/runscript - -DAEMON=/usr/sbin/nscd - -start() { - ebegin "Starting nscd" - # remove stale files - rm -f /var/db/nscd/* /var/run/nscd/* 2>/dev/null - start-stop-daemon --start --exec $DAEMON - eend $? -} - -stop () { - ebegin "Stopping nscd" - start-stop-daemon --stop --quiet \ - --pidfile=/var/run/nscd/nscd.pid - eend $? -} |