Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

If dst file name contains a slash - we don't use a hyphen #257

Closed
wants to merge 2 commits into from

Conversation

AutomationD
Copy link

If dst file name contains a slash - we don't use a hyphen (file goes into a subdirectory)

Additionally fixes #9299

…into a subdirectory)

Additionally fixes #9299
@theforeman-bot
Copy link
Member

There were the following issues with the commit message:

  • ce841f3 must be in the format Fixes/refs #redmine_number - brief description.

Guidelines are available on the Foreman wiki.


This message was auto-generated by Foreman's prprocessor

else
filename = dst + '-' + src.split("/")[-1]
end

filename = dst + '-' + src.split("/")[-1]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changes you made are going to be overridden here.

@dmitri-d
Copy link
Member

Thanks for the PR, @kireevco! In addition to the comment above, could you file a ticket explaining the issue and change the commit message to be in the format Fixes #<issue number>: short description here.

@dLobatog
Copy link
Member

@witlessbird The reasoning is here, this PR is part of a few other changes to community templates and core http://projects.theforeman.org/issues/9299

@AutomationD
Copy link
Author

Oops, my bad. Of course it shouldn't be like that. Let me fix everything.

@theforeman-bot
Copy link
Member

There were the following issues with the commit message:

  • ce841f3 must be in the format Fixes/refs #redmine_number - brief description.
  • bb68151 must be in the format Fixes/refs #redmine_number - brief description.

Guidelines are available on the Foreman wiki.


This message was auto-generated by Foreman's prprocessor

@AutomationD
Copy link
Author

Looks like my commit message didn't work for a bot again... Next time I'll use
Fixes #9299: fix copy-paste override issue

@dmitri-d
Copy link
Member

[test]

else
filename = dst + '-' + src.split("/")[-1]
end

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm afraid this is still not going to work: on line 109 https://github.com/kireevco/smart-proxy/blob/develop/modules/tftp/server.rb#L109, the resulting directory tree won't have the last directory, if I correctly understand the directory layout suggested in #9299.

Is the directory per architecture required for pxe booting of Windows? Could we get away with our current approach, i.e. prefixing boot files with the os and architecture name? For example, the names of boot files for centos 6.4 for x86 are: CentOS-6.4-x86_64-initrd.img and CentOS-6.4-x86_64-vmlinuz.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, it never worked with the hyphens, because windows was looking for specific files, and they didn't exist, since they had arch prefixes with hyphens. (bcd-x86, for example).
I currently have this code in my production and It does create a directory tree that is desired.

I get something like boot/windows-x64/moot.wim, boot/windows-x86/boot.wim, etc.

Are you testing with my patch to windows operating system model In foreman?

If you could, please explain what's not correct in the directory structure, so I can fix It.

On Feb 11, 2015, at 3:58 AM, Dmitri Dolguikh notifications@github.com wrote:

In modules/tftp/server.rb:

@@ -93,7 +93,13 @@ def pxeconfig_file mac
end

def self.fetch_boot_file dst, src

  • filename = dst + '-' + src.split("/")[-1]
  • If dst file name contains a slash - we don't use a hyphen (file goes into a subdirectory)

  • if dst.include? "/"
  •  filename  = dst + src.split("/")[-1]
    
  • else
  •  filename  = dst + '-' + src.split("/")[-1]
    
  • end

I'm afraid this is still not going to work: on line 109 https://github.com/kireevco/smart-proxy/blob/develop/modules/tftp/server.rb#L109, the resulting directory tree won't have the last directory, if I correctly understand the directory layout suggested in #9299.

Is the directory per architecture required for pxe booting of Windows? Could we get away with our current approach, i.e. prefixing boot files with the os and architecture name? For example, the names of boot files for centos 6.4 for x86 are: CentOS-6.4-x86_64-initrd.img and CentOS-6.4-x86_64-vmlinuz.


Reply to this email directly or view it on GitHub.

@dmitri-d
Copy link
Member

Sorry, my bad, the directory tree will get created properly. I'll test this first thing tomorrow. Any chance you could add a test for this change (and squash commits)?

@dmitri-d
Copy link
Member

[test]

@dmitri-d
Copy link
Member

@kireevco: There is a different PR that fixes this issue, but retains backwards compatibility. Could you take a look: #258

@AutomationD
Copy link
Author

Looks good to me. Let's use that one instead of #257
If someone else could test this, it would be great too!

@dmitri-d
Copy link
Member

closing in favour of #258

@dmitri-d dmitri-d closed this Feb 18, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
4 participants