Isso é o que eu fiz ... Adicionei o seguinte no meu script anaconda-ks.cfg
:
# Pre python
%pre --interpreter=/usr/bin/python
print 'python code goes here to define "myhostname"'
...
hfile = open("/tmp/hostname.ks", "w")
hfile.write("network --hostname=" + myhostname)
hfile.close()
%end
# Network information
network --bootproto=dhcp --device=eth0 --ipv6=auto --activate
%include "/tmp/hostname.ks"