File: atftpd.prerm

package info (click to toggle)
atftp 0.7-7
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,176 kB
  • ctags: 544
  • sloc: ansic: 6,372; sh: 3,883; makefile: 80
file content (14 lines) | stat: -rw-r--r-- 238 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

# Stops daemon if it is running under our control
if [ -x /etc/init.d/atftpd ]; then 
    if [ -x /usr/sbin/invoke-rc.d ]; then
	invoke-rc.d --quiet atftpd stop
    else
	/etc/init.d/atftpd stop
    fi
fi	

#DEBHELPER#

exit 0