We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the following piece of puppet code
if $groups { $all_groups.each |$my_group, $group_gid| { if !defined( Group[$my_group] ){ if $my_group in $groups { group {$my_group: ensure => present, gid => $group_gid, } } } } }
$my_group and $group_gid have the following warning: WARNING: top-scope variable being used without an explicit namespace on line ...
The text was updated successfully, but these errors were encountered:
I'm holding off adding support for the future parser functionality until it becomes stable. Once it has, I'll come back to this issue
Sorry, something went wrong.
Fixes rodjek#249 - Variables in foreach loops incorrectly identified …
b96902f
…as top scope
Support future parser loop local scope variables
16ebdea
Adds support for future parser loop local scope blocks that define variables to the variable_scope check. Closes #264 Closes #258 Closes #249 /cc #271
Successfully merging a pull request may close this issue.
In the following piece of puppet code
$my_group and $group_gid have the following warning:
WARNING: top-scope variable being used without an explicit namespace on line ...
The text was updated successfully, but these errors were encountered: