File: preinst

package info (click to toggle)
ssmtp 2.61-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 340 kB
  • ctags: 150
  • sloc: ansic: 1,805; sh: 486; makefile: 117
file content (22 lines) | stat: -rw-r--r-- 418 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh -e
#
# $Id: preinst,v 1.4 2001/03/21 20:29:27 matt Exp $
#

if test -s /etc/ssmtp.conf
then
	echo "Configuration files found in /etc, moving them to /etc/ssmtp"

	mkdir /etc/ssmtp 2>/dev/null || true
	mv -f /etc/ssmtp.conf /etc/ssmtp 2>/dev/null || true

fi

if test -s /etc/revaliases
then
	mkdir /etc/ssmtp 2>/dev/null || true
	mv -f /etc/revaliases /etc/ssmtp 2>/dev/null || true
fi

# Program End
exit 0