#!/bin/sh
# Hi!  Thanks for looking a this file...
# More or less what this file will do is move files from the current directory
# to the correct directories.  You could do this by hand if you have a strong
# fear of automation
#				Johnny (halo@engin.umich.edu)

echo "Make sure to run this from the dir you untar'd the tar file into."

install -o root -g root -m 700 ./usr/etc/startppp /usr/etc/startppp
install -o root -g root -m 700 ./usr/etc/endppp /usr/etc/endppp
install -o root -g root -m 700 ./usr/etc/ppp.chat /usr/etc/ppp.chat
install -o root -g root -m 600 ./usr/etc/ppp.michnet.1 /usr/etc/ppp.michnet.1
install -o root -g root -m 600 ./usr/etc/ppp.michnet.2 /usr/etc/ppp.michnet.2
install -o root -g root -m 600 ./usr/etc/ppp.michnet.user /usr/etc/ppp.michnet.user
install -o root -g root -m 700 ./etc/ppp/ip-down /etc/ppp/ip-down
install -o root -g root -m 700 ./etc/ppp/ip-up /etc/ppp/ip-up
install -o root -g root -m 600 ./etc/ppp/options /etc/ppp/options
install -o root -g root -m 4700 ./usr/etc/pppd /usr/etc/pppd
install -o root -g root -m 700 ./usr/etc/chat /usr/etc/chat


echo ""
echo ""
echo "Well, it should be installed.  Be sure to look through the files"
echo "and change what needs to be changed. (/usr/etc/startppp,"
echo "/usr/etc/ppp.michnet, /etc/ppp/ip-*)"
echo ""
echo "If you have questions about this, mail me at halo@engin.umich.edu,"
echo "and I'll try to help."
echo ""
echo "P.S. run /usr/etc/startppp as root to start the entire thing,"
echo "and run /usr/etc/endppp to end it. :)"
