DataMuseum.dk

Presents historical artifacts from the history of:

Regnecentalen RC-900

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Regnecentalen RC-900

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦f5d3b355e⟧ TextFile

    Length: 823 (0x337)
    Types: TextFile
    Notes: UNIX file
    Names: »dependencies«

Derivation

└─⟦f660c3862⟧ Bits:30004068/disk1.imd Interactive TCP/IP v.1.2
└─⟦f660c3862⟧ UNIX Filesystem
    └─⟦this⟧ »hb/install/dependencies« 

TextFile

# Check that the Kernel Configuration Package has already been installed.
# @(#)dependencies	2.5 - 88/11/10
#

deperror=no

grep "Kernel Configuration" /usr/options/* > /dev/null 2>&1
if [ $? != 0 ]
then
	echo "\n**ERROR**   ${PKGNAME} cannot be installed "
	echo "The Kernel Configuration package must be installed"
	echo "before Host Based TCP/IP package can be installed."
	deperror=yes
fi
grep "STREAMS Facilities" /usr/options/* > /dev/null 2>&1
if [ $? != 0 ]
then
	echo "\n**ERROR**   ${PKGNAME} cannot be installed "
	echo "The STREAMS Facilities package Version 1.0.4 must be"
	echo "installed before Host Based TCP/IP package can be installed."
	deperror=yes
fi
if [ "$deperror" = "yes" ]
then
	echo "\nPlease install the above package(s) first,"
	echo "and then install Host Based TCP/IP package.\n"
	exit 1
fi