Thanks for the link. It's definitely useful information.
I'm sorry to bug you further, do you happen to know exactly what this command does?
update-rc.d -f apache2 remove
It sounds like this might actually remove the init script. I'm looking for the most elegant way to do this, the easiest way to do it without breaking anything or being unable to reverse the process. If I can simply add a line to /etc/rc.d/rc.local, or if I can comment out a line in an earlier script, or if I can just remove the execution priveledges of one of the files, then it seems like something I could easily reenable in case I need it later. Sorry, like I said this isn't an area that I have a ton of understanding in as most of the services that start are ones that I don't mind.
I'm wondering if it is something I could reverse easily just by doing something like:
update-rc.d apache2 start
or whether that wouldn't be enough.