File: vsftpd.postrm

package info (click to toggle)
vsftpd 2.0.3-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 984 kB
  • ctags: 1,059
  • sloc: ansic: 11,743; sh: 86; makefile: 80
file content (11 lines) | stat: -rw-r--r-- 233 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

case "$1" in
  remove)
    # Older versions of vsftpd add to inetd.conf, or the user might have
    # done so manually, so disable any vsftpd entry.
    update-inetd --disable --pattern vsftpd ftp
    ;;
esac

#DEBHELPER#