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

⟦c1660c164⟧ TextFile

    Length: 516 (0x204)
    Types: TextFile
    Notes: UNIX file
    Names: »dependencies«

Derivation

└─⟦b1d6695d7⟧ Bits:30004155/sitdisk.imd SW95713I 386/ix Software Development System Rel. 2.0
└─⟦b1d6695d7⟧ UNIX Filesystem
    └─⟦this⟧ »sitls/new/usr/subsets/scripts/dependencies« 

TextFile

# Check that the Kernel Configuration Package has already been installed.
# as a sample dependencies file

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 MYSUB package can be installed."
	deperror=yes
fi
if [ "$deperror" = "yes" ]
then
	echo "\nPlease install the above package(s) first,"
	echo "and then install MYSUB package.\n"
	exit 1
fi