Re: IP addresses for virtual machines at provision time

2010-08-24 Thread Jacob Hunt
I just "create" one with the following script. #! /usr/bin/python # macgen.py script generates a MAC address for KVM guests # import random mac = [ 0x54, 0x52, 0x00, random.randint(0x00, 0x7f), random.randint(0x00, 0xff), random.randint(0x00, 0xff) ] print ':'.join(map(lambda x: "%02x" % x, mac))

SCM control and subversion?

2010-06-01 Thread Jacob Hunt (jacobhunt)
Is "git" the only supported method of SCM control? In /etc/cobbler/settings for the comments above scm_track_mode it states "git is the recommend SCM" They way I read that is that others may work? Am I incorrect with that, I have set the mode to "svn" and "subversion" and I get an error of "c

RE: SCM control and subversion?

2010-06-01 Thread Jacob Hunt (jacobhunt)
and subversion? Jacob Hunt (jacobhunt) wrote: > Is "git" the only supported method of SCM control? In > /etc/cobbler/settings for the comments above scm_track_mode it states > "git is the recommend SCM" > > They way I read that is that others may work? Am I inc