-
Notifications
You must be signed in to change notification settings - Fork 141
rename environment parameter to unbreak hiera #64
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
base: master
Are you sure you want to change the base?
Conversation
|
@igalic Please resolve the merge conflicts. |
|
done |
| # [*path*] | ||
| # The path to the letsencrypt installation. | ||
| # [*environment*] | ||
| # [*venv_vars*] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would you like to add documentation for venv_path at the same time?
|
This is a backwards incompatible change? |
|
Label is the right thing |
|
the basic question is: do we need a release before we merging this, yes/no? |
|
According to SemVer, we should publish a new release, right? |
|
This needs a rebase now due to conflicts. |
This is a fix for #63. We rename the `environment` to `venv_vars` in order to ensure that hiera calls do *not* break, as soon as a puppet execution flow enters our module. For consistency's sake, we change `environment` not only in the main class (where it's definitely needed: rodjek/puppet-lint#574), but also in the `certonly` define.
gosh it's bee a while but it's done |
| String $path = $letsencrypt::params::path, | ||
| $venv_path = $letsencrypt::params::venv_path, | ||
| Array $environment = [], | ||
| $venv_path = [], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't look like a correct rebase
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oops, thanks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
but now that i'm seeing this, we've already had $venv_vars — is this even still needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the answer is: potentially, but it needs to be rethought, rather than rebased.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, we had venv_path so it's still useful to have I think
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤔
| String $path = $letsencrypt::params::path, | ||
| $venv_path = $letsencrypt::params::venv_path, | ||
| Array $environment = [], | ||
| $venv_path = [], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
but now that i'm seeing this, we've already had $venv_vars — is this even still needed?
| String $path = $letsencrypt::params::path, | ||
| $venv_path = $letsencrypt::params::venv_path, | ||
| Array $environment = [], | ||
| $venv_path = [], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the answer is: potentially, but it needs to be rethought, rather than rebased.
|
Dear @igalic, thanks for the PR! This is pccibot, your friendly Vox Pupuli GitHub Bot. I noticed that your pull request contains merge conflict. Can you please rebase? You can find my sourcecode at voxpupuli/vox-pupuli-tasks |
|
dear @pccibot, as mentioned in my previous communique, this pull request is either obsolete, or it needs to be rethought. Best regards, i |
|
Dear @igalic, thanks for the PR! This is pccibot, your friendly Vox Pupuli GitHub Bot. I noticed that your pull request contains merge conflict. Can you please rebase? You can find my sourcecode at voxpupuli/vox-pupuli-tasks |
|
Dear @igalic, thanks for the PR! This is pccibot, your friendly Vox Pupuli GitHub Bot. I noticed that your pull request contains merge conflict. Can you please rebase? You can find my sourcecode at voxpupuli/vox-pupuli-tasks |
Fixes #63.
We rename the
environmenttovenv_varsin order to ensure that hiera calls do not break, as soon as a puppet execution flow enters our module. For consistency's sake, we changeenvironmentnot only in the main class (where it's definitely needed: rodjek/puppet-lint#574), but also in thecertonlydefine.