File: script

package info (click to toggle)
exim4 4.50-8sarge2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 9,852 kB
  • ctags: 5,278
  • sloc: ansic: 75,531; sh: 4,380; makefile: 476; perl: 65
file content (19 lines) | stat: -rw-r--r-- 423 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
# install as /usr/share/bug/$package/script or /usr/share/bug/$package

UE4CC="/etc/exim4/update-exim4.conf.conf"

if test -x /usr/sbin/exim4 ; then
	/usr/sbin/exim4 -bV >&3
fi
yesno "Include extended configuration information?" "yep"
if [ "$REPLY" != "yep" ] ;then
        exit 0
fi
if test -r $UE4CC ; then
	cat $UE4CC >&3
fi
if test -r /etc/mailname ; then
	echo -n 'mailname:' >&3
	cat /etc/mailname >&3
fi