Internet Gold connection mini-script

NOTE:
This is a small script I wrote which I use to connect to internet gold.
It is not guarateed to you in any way that this will work on your system.

INSTALLATION:

This package comes with two files.

pap-secrets - Sample file you should put in /etc/ppp
	      You must edit this file and put your username and password
	      where noted (in the file)
	      If you are using this file (pap-secrets) for other purposes
	      then you will have to append a line to the existing file.
	      The syntax goes as follows:
	      user * password
	      Meaning, you type your username, add an asterisk, and then the
	      password. You need spaces between all of these.

inet-gold   - This is the script itself. Put it somewhere in your search path
	      (/usr/bin, for example).

After you put these files, you need find out which is your modem device and
make a symlink from it to /dev/modem. 
For example, if your modem device is /dev/ttyS1 then the symlink command would
be:

ln -sf /dev/ttyS1 /dev/modem

Add the DNS servers to /etc/resolv.conf:

search . 
nameserver 192.116.192.8
nameserver 192.116.192.9

CONNECTING:

Connecting is as simple as running the inet-gold shell script. Preferably at
the background:

inet-gold &

The script runs in debug mode, which lets you see what is going on by 
following the system messages.
I recommend that you check at the connection time to see that you truely
are connected.

tail -f /var/log/messages

This command follows the system log until you break it (with ctrl-c).

DISCONNECTING:

When you want to break the connection, you simply kill the shell script.
If you ran it at the background, you might want to

killall inet-gold