From 65dda266f5eeed04e63b9481342e30f96db8f734 Mon Sep 17 00:00:00 2001 From: Frank Date: Mon, 11 Apr 2011 14:58:09 -0700 Subject: [PATCH] Bug 8208 - bare metal provisioning user lower case for tftp boot file --- scripts/network/ping/prepare_tftp_bootfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/network/ping/prepare_tftp_bootfile.py b/scripts/network/ping/prepare_tftp_bootfile.py index 581ddd82b65..4e92f36dd2b 100644 --- a/scripts/network/ping/prepare_tftp_bootfile.py +++ b/scripts/network/ping/prepare_tftp_bootfile.py @@ -29,7 +29,7 @@ def prepare_boot_file(): if exists(pxelinux) == False: makedirs(pxelinux) - cfg_name = "01-" + mac.replace(':','-') + cfg_name = "01-" + mac.replace(':','-').lower() cfg_path = join(pxelinux, cfg_name) f = open(cfg_path, "w") stuff = template % (cifs_server, share, directory, image_to_restore, cifs_username, cifs_password)