#!/bin/bash
# Script to automatically modify the IRLP environment file to allow calls to
# Experimental Reflectors (EXPxxxx)
# Ramesh Dhami, VA3UV
# Version 0.1
# May 21, 2009
#
cd /home/irlp/custom
cp environment environment.pre_mod
cat <<EOF >>/home/irlp/custom/environment
export ALLOW_EXPERIMENTAL_NODES=YES
EOF
# Now restart the IRLP Node
/home/irlp/custom/rc.irlp
echo "Done - You can now connect to Experimental Reflectors"
echo "Please Dial 0040 to test"
echo "PROCOM Net will be using 0040 Effective Immediately"

exit 0
