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

⟦ae8928e7f⟧ TextFile

    Length: 589 (0x24d)
    Types: TextFile
    Notes: UNIX file
    Names: »K30card«, »S30card«, »card«

Derivation

└─⟦23f6ff13b⟧ Bits:30004042/rcadapt.imd SW95705I 386/ix Multi-user Release 1.2
└─⟦23f6ff13b⟧ UNIX Filesystem
    └─⟦this⟧ »AE/new/etc/init.d/card« 
    └─⟦this⟧ »AE/new/etc/rc0.d/K30card« 
    └─⟦this⟧ »AE/new/etc/rc2.d/S30card« 

TextFile

#	Copyright (c) 1988 RC
#	  All Rights Reserved

#	THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF RC
#	The copyright notice above does not evidence any
#	actual or intended publication of such source code.

#ident	"@(#)card	1.1"

#	card control
case $1 in
'start')
	[ -s /etc/rc.d/nodename ] && sh /etc/rc.d/nodename
	[ -x /etc/cardfixup ] && ( /etc/cardfixup || echo "NOTICE: cardfixup failed" )
	[ -x /etc/cardload ] && ( /etc/cardload || echo "NOTICE: cardload failed" )
	;;
'stop')
	[ -x /etc/cardload ] && /etc/cardload -k
	;;
*)
	echo "usage: /etc/init.d/card {start|stop}"
	;;
esac