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)