File: atftpd.prerm

package info (click to toggle)
atftp 0.7.git20120829-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 748 kB
  • ctags: 427
  • sloc: ansic: 6,725; sh: 684; makefile: 87
file content (16 lines) | stat: -rw-r--r-- 246 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

# 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