da página man:
By default, the on and off options affect only runlevels 2, 3, 4, and
5, while reset and resetpriorities affects all of the runlevels. The
--level option may be used to specify which runlevels are affected.
para que você possa usar awk
para extrair apenas esses níveis (2,3,4,5):
chkconfig --list | grep httpd | awk '{ print $4 }' | cut -d ':' -f 2
e faça o mesmo para outros níveis (3,4,5) substituindo $4
por ( $5
, $6
, $7
)