#If you want to use gen_excludes.sh, then put a file in this directory
call exclude_list.skel.  This should be a file containing the default files
that should always be excluded.  If you also want to create any custom lists,
you can also add files by this syntax:

clientname
clientname.classname
clientname.classname.schedname

If you put any custom lines in any of those files, it will result in creating
exclude files by those names on the client.  These custom files will be a combination
of the default files excluded in exclude_list.skel and the custom lines in the above
files.

For example, if you created a file "exclude_list.skel" with one line:

/proc

And then ran gen_excludes.sh, it would push that file out to all clients.

If you then created a file called "elvis" with one line:

/elvisstuff

And a file called "elvis.bigclass" with one line:

/stuffforbigclass

Gen_excludes would make the following files:

1. A default exclude_list on each client with one line

/proc

2. A custom exclude_list on elvis with two lines:

/proc
/elvisstuff

2. A custom exclude_list called exclude_list.bigclass on elvis with two lines:

/proc
/stuffforbigclass

