diff options
author | Josh Gachnang <josh@pcsforeducation.com> | 2014-05-21 10:15:26 -0700 |
---|---|---|
committer | Jim Rollenhagen <jim@jimrollenhagen.com> | 2014-06-14 07:31:31 -0700 |
commit | 5f5ec56bed86fb48744cae0ffb20fa518068719d (patch) | |
tree | 8646d56ecc43d000ee792046ca0140fdb1ead6b4 /etc/ironic | |
parent | 3a2582a86615464779e7545275aa93fdc50d29ea (diff) | |
download | ironic-5f5ec56bed86fb48744cae0ffb20fa518068719d.tar.gz |
Factoring out PXE and TFTP functions
Multiple drivers need to support neutron and Ironic's PXE and TFTP
server. Factoring them out into a common file will make that
transition possible. This moves all the generic calls into neutron
and reconfigures the PXE driver to work with the new functions.
Change-Id: I181ffabe673636b628329592e623e6425da54d6d
Diffstat (limited to 'etc/ironic')
-rw-r--r-- | etc/ironic/ironic.conf.sample | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/etc/ironic/ironic.conf.sample b/etc/ironic/ironic.conf.sample index dd8396fec..a19783af8 100644 --- a/etc/ironic/ironic.conf.sample +++ b/etc/ironic/ironic.conf.sample @@ -904,13 +904,6 @@ # is created. (string value) #default_ephemeral_format=ext4 -# IP address of Ironic compute node's tftp server. (string -# value) -#tftp_server=$my_ip - -# Ironic compute node's tftp root path. (string value) -#tftp_root=/tftpboot - # Directory where images are stored on disk. (string value) #images_path=/var/lib/ironic/images/ @@ -958,3 +951,17 @@ #libvirt_uri=qemu:///system +[tftp] + +# +# Options defined in ironic.common.tftp +# + +# IP address of Ironic compute node's tftp server. (string +# value) +#tftp_server=$my_ip + +# Ironic compute node's tftp root path. (string value) +#tftp_root=/tftpboot + + |