1998-12-08 15:23:43 +00:00
|
|
|
--- scripts/exim_install.orig Tue Dec 8 16:05:07 1998
|
|
|
|
+++ scripts/exim_install Tue Dec 8 16:09:49 1998
|
|
|
|
@@ -186,25 +186,39 @@
|
|
|
|
fi
|
|
|
|
done
|
1996-07-06 11:13:58 +00:00
|
|
|
|
1998-11-16 09:45:24 +00:00
|
|
|
+# Install exim.sh startup script in FreeBSD's ${PREFIX}/etc/rc.d so that
|
|
|
|
+# exim will start up on boot once sendmail is disabled and
|
|
|
|
+# ${PREFIX}/etc/exim/configure is in place.
|
1996-07-06 11:13:58 +00:00
|
|
|
+
|
1998-11-16 09:45:24 +00:00
|
|
|
+echo $com ""
|
1998-12-08 15:23:43 +00:00
|
|
|
|
1998-11-16 09:45:24 +00:00
|
|
|
+if [ -f ${PREFIX}/etc/rc.d/exim.sh ]; then
|
|
|
|
+ echo $com "${PREFIX}/etc/rc.d/exim.sh exists, not overwritten"
|
|
|
|
+else
|
|
|
|
+ echo $com "Installing exim.sh startup script in $PREFIX/etc/rc.d"
|
|
|
|
+ ${real} mkdir -p ${PREFIX}/etc/rc.d
|
|
|
|
+ echo ${CP} -p exim.sh ${PREFIX}/etc/rc.d/
|
|
|
|
+ ${real} ${CP} -p exim.sh ${PREFIX}/etc/rc.d/
|
1996-07-06 11:13:58 +00:00
|
|
|
+ if [ $? -ne 0 ]; then
|
|
|
|
+ echo $com ""
|
|
|
|
+ echo $com "**** Exim installation ${ver}failed ****"
|
|
|
|
+ exit 1
|
|
|
|
+ fi
|
|
|
|
+fi
|
1996-10-31 19:26:07 +00:00
|
|
|
|
1998-12-08 15:23:43 +00:00
|
|
|
# If there is no configuration file, install the default.
|
|
|
|
|
1996-10-31 19:26:07 +00:00
|
|
|
echo $com ""
|
|
|
|
|
1998-10-07 10:49:32 +00:00
|
|
|
-if [ ! -f ${CONFIGURE_FILE} ]; then
|
|
|
|
- echo $com Installing default configuration in ${CONFIGURE_FILE}
|
|
|
|
- echo $com because there is no existing configuration file.
|
1998-11-18 11:42:46 +00:00
|
|
|
- echo ${CP} ../src/configure.default ${CONFIGURE_FILE}
|
|
|
|
- ${real} ${CP} ../src/configure.default ${CONFIGURE_FILE}
|
1998-11-16 09:45:24 +00:00
|
|
|
+ echo $com Installing sample configuration file
|
|
|
|
+ ${real} mkdir -p ${CONFIGURE_FILE%/*}
|
1998-11-18 11:42:46 +00:00
|
|
|
+ echo ${CP} ../src/configure.default ${CONFIGURE_FILE}.sample
|
|
|
|
+ ${real} ${CP} ../src/configure.default ${CONFIGURE_FILE}.sample
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo $com ""
|
1998-12-08 15:23:43 +00:00
|
|
|
echo $com "**** Exim installation ${ver}failed ****"
|
1998-11-16 09:45:24 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
1998-10-07 10:49:32 +00:00
|
|
|
-else
|
|
|
|
- echo $com Configuration file ${CONFIGURE_FILE} already exists
|
1998-11-16 09:45:24 +00:00
|
|
|
-fi
|
|
|
|
|
1998-12-08 15:23:43 +00:00
|
|
|
# Install info files if the directory is defined and the Texinfo
|
|
|
|
# source documentation is present.
|