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

(#17371) Re-initialize settings metadata after run_mode determined #1361

Merged
merged 2 commits into from
Jan 3, 2013

Conversation

zaphod42
Copy link
Contributor

@zaphod42 zaphod42 commented Jan 3, 2013

Currently metadata for settings (e.g. mode, owner) is initialized during
parsing of the config file, at which point the run_mode isn't known. The
initialization loops over each section of the config and since one of the
sections is determined by the run_mode, this means it doesn't get
searched. Setting file metadata inside a section such as [master] has no
effect.

This patch causes the setting metadata to be set twice - once during early
startup before the run_mode is known (for settings used globally) and
again once the run_mode is known so that configuration in specialised
sections take effect.

Overrides PR #1316

Dominic Cleal and others added 2 commits January 2, 2013 16:26
Currently metadata for settings (e.g. mode, owner) is initialized during
parsing of the config file, at which point the run_mode isn't known.  The
initialization loops over each section of the config and since one of the
sections is determined by the run_mode, this means it doesn't get searched.
Setting file metadata inside a section such as [master] has no effect.

This patch causes the setting metadata to be set twice - once during early
startup before the run_mode is known (for settings used globally) and again
once the run_mode is known so that configuration in specialised sections take
effect.
zaphod42 added a commit that referenced this pull request Jan 3, 2013
(#17371) Re-initialize settings metadata after run_mode determined
@zaphod42 zaphod42 merged commit 78d69b6 into puppetlabs:master Jan 3, 2013

on(agent, puppet('master', '--compile', 'fake_node', '--confdir', get_test_file_path(agent, '')))

on(agent, "stat --format '%U:%G %a' #{logdir}") do
Copy link
Contributor

Choose a reason for hiding this comment

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

@zaphod42 I started down a similar path of using stat directly to retrieve file modes, but the --format option isn't supported on the version I have on my mac (we don't run the acceptance tests on that, yet). Instead there's:

$ stat -f %p foo.txt 
100755

Note that it includes S_IFREG in the resulting mode, whereas on GNU coreutils stat, I just get 755.

I assume the --format option is only supported on the version in GNU coreutils, but I don't know if that is on our Solaris acceptance test VM, and I have no idea what Windows will do here.

It may be better to invoke ruby -e to stat the file, and mask off any higher order bits S_IFREG, etc.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants