make install/uninstall messages look like the messages from other ports

This commit is contained in:
marc 1999-04-10 07:14:56 +00:00
parent c0b02d9d9d
commit 06f9c08f6d
2 changed files with 18 additions and 14 deletions

View File

@ -1,13 +1,15 @@
#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.1 1999/04/03 09:12:58 marc Exp $
# $OpenBSD: DEINSTALL,v 1.2 1999/04/10 07:14:56 marc Exp $
#
# Pre/post-uninstallation setup of enscript
echo ""
echo "** To completely deinstall the enscript package you need to perform"
echo "** this steps as root:"
echo "**"
echo "** rm -rf /etc/enscript.cfg"
echo ""
echo
echo "+---------------"
echo "| To completely deinstall the enscript package you need to perform"
echo "| this steps as root:"
echo "|"
echo "| rm -f /etc/enscript.cfg"
echo "+---------------"
echo
exit 0

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $OpenBSD: INSTALL,v 1.1 1999/04/03 09:12:58 marc Exp $
# $OpenBSD: INSTALL,v 1.2 1999/04/10 07:14:56 marc Exp $
#
# Pre/post-installation setup of enscript
@ -26,12 +26,14 @@ do_configuration()
fi
if [ -r ${CONFIG_FILE} ]; then
echo ""
echo "** The file ${CONFIG_FILE} exists. Your existing configuration"
echo "** has not been changed. You MAY need to update your"
echo "** configuration. See the current configuration sample file"
echo "** ${CONFIG_SAMPLE}."
echo ""
echo
echo "+---------------"
echo "| The file ${CONFIG_FILE} exists. Your existing configuration"
echo "| has not been changed. You MAY need to update your"
echo "| configuration. See the current configuration sample file"
echo "| ${CONFIG_SAMPLE}."
echo "+---------------"
echo
else
cp ${CONFIG_SAMPLE} ${CONFIG_FILE}
fi