#!/bin/csh -f
# Script to make public the private workstations in the IC
#
#	MIT Interactive Classroom
#
# 	Timothy Wall 1/22/90  v1.0 for system 6.4R
# 	type '/mit/icsys/make_public' (as root)
#
#       
echo -n "making workstation public..."			 
if (-r /tmp/rc.conf) then
	rm /tmp/rc.conf
endif
sed -e "s/PUBLIC=false/PUBLIC=true/" /etc/rc.conf > /tmp/rc.conf
mv /tmp/rc.conf /etc/rc.conf
echo "done"						 
