#!/bin/sh
#
# Create customization for console server
# 	1) Edit root's bashrc file to contain path to $CONSBIN
#	2) Edit rc.local to start console server software on bootup
# All you should need to do is edit the CONSFILE variable
#

B="[1m"
N="[0m"
# 
# $CONSBIN is the location of the console server binary (conserver).
#
CONSBIN=/usr/farm/bin


update_crontab() {
	echo "Updating crontab."
	crontab -l >> /usr/farm/bin/.crontab
	crontab /usr/farm/bin/.crontab
	echo "Crontab file now contains:"
	crontab -l
}

update_crontab
