${FOO} -> $FOO

This commit is contained in:
brad 2001-02-23 00:15:34 +00:00
parent a221a8dd1f
commit 1016e22b1a
2 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
#!/bin/bin
# $OpenBSD: DEINSTALL,v 1.2 2000/07/19 09:31:20 brad Exp $
#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.3 2001/02/23 00:15:34 brad Exp $
#
# cucipop de-installation
@ -8,13 +8,13 @@ PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
SPOOL_DIR=/var/spool/cucipop
if [ -d ${SPOOL_DIR} ]; then
if [ -d $SPOOL_DIR ]; then
echo
echo "+---------------"
echo "| To completely deinstall the $1 package you need to perform"
echo "| this step as root:"
echo "|"
echo "| rm -rf ${SPOOL_DIR}"
echo "| rm -rf $SPOOL_DIR"
echo "|"
echo "| Do not do this if you plan on re-installing $1"
echo "| at some future time."

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $OpenBSD: INSTALL,v 1.1 2000/03/28 08:46:25 brad Exp $
# $OpenBSD: INSTALL,v 1.2 2001/02/23 00:15:35 brad Exp $
#
# Pre/post-installation setup of cucipop
@ -14,8 +14,8 @@ SPOOL_DIR=/var/spool/cucipop
#
do_install()
{
install -d -o root -g wheel -m 755 ${SPOOL_DIR}
install -d -o root -g wheel -m 755 ${SPOOL_DIR}/bulletins
install -d -o root -g wheel -m 755 $SPOOL_DIR
install -d -o root -g wheel -m 755 $SPOOL_DIR/bulletins
}
# verify proper execution