@Rubixibuc, fedora 15 onwards, the Sys V style of init startup in Linux is changed/evolved into using systemd. Systemd is a new framework, its a drop in replacement of init and init related configurations like inittab for runlevel configurations are not used, instead runlevels are changed to the terminology of targets. systemd provides aggressive parallelization capabilities, uses socket and D-Bus activation for starting services, offers on-demand starting of daemons, keeps track of processes using Linux cgroups, supports snapshotting and restoring of the system state, maintains mount and automount points and implements an elaborate transactional dependency-based service control logic. It is intended to provide a better framework for expressing services' dependencies, allow more work to be done in parallel at system startup, and to reduce shell overhead.
As far as your question goes:
Q: How do I change the default runlevel to boot into?
A: The symlink /etc/systemd/system/default.target controls where we boot into by default. Link it to the target unit of your choice. For example, like this:
# ln -sf /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
or
# ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target
Q: How do I figure out the current runlevel?
A: Note that there might be more than one target active at the same time. So the question regarding the runlevel might not always make sense. Here's how you would figure out all targets that are currently active:
$ systemctl list-units --type=target
If you are just interested in a single number, you can use the venerable runlevel command, but again, its output might be misleading.
Get a quick start for yourself here at
http://0pointer.de/blog/projects/systemd-for-admins-2.html
http://www.freedesktop.org/wiki/Software/systemd/TipsAndTricks
http://www.freedesktop.org/wiki/Software/systemd/FrequentlyAskedQuestions