File: preinst

package info (click to toggle)
linux-ftpd-ssl 0.17.36%2Breally0.17-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,524 kB
  • sloc: ansic: 3,875; yacc: 1,379; sh: 52; makefile: 50
file content (14 lines) | stat: -rw-r--r-- 251 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# $Id: preinst,v 1.1 1999/10/07 12:48:39 herbert Exp $

set -e

# Rename old PAM conffile.
if [ -n "$2" ] && dpkg --compare-versions "$2" lt 0.11-5; then
	cd /etc/pam.d
	if [ -f ftpd  -a ! -f ftp ]; then
		cp -p ftpd ftp
	fi
fi

#DEBHELPER#