Fix ironic-pxe map-file location

map-file should not be overwriten by volume

TrivialFix

Change-Id: I57bf963fd4af8c010fda0c4504e83dc33f6e9162
This commit is contained in:
Andrey Shestakov 2016-01-15 11:21:32 +02:00
parent 87355c231a
commit 9da034dc0a
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{
"command": "/usr/sbin/in.tftpd --verbose --foreground --user root --address 0.0.0.0:69 --map-file /tftpboot/map-file /tftpboot",
"command": "/usr/sbin/in.tftpd --verbose --foreground --user root --address 0.0.0.0:69 --map-file /map-file /tftpboot",
"config_files": []
}

View File

@ -23,6 +23,6 @@ RUN apt-get install -y --no-install-recommends \
{% endif %}
COPY tftp-map-file /tftpboot/map-file
COPY tftp-map-file /map-file
{{ include_footer }}