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
crmngr mistakenly interprets a modulesdir statement as a module declaration.
modulesdir
To fix it:
In crmngr/controlrepository.py:
crmngr/controlrepository.py
@staticmethod def _collapse_puppetfile(lines): """remove whitespace and comments from puppetfile lines""" puppetfile_lines = [] re_comment = re.compile(r'^\s*#') re_mod = re.compile(r'^\s*mod')
Change the line 206 to
re_mod = re.compile(r'^\s*mod\s+')
The text was updated successfully, but these errors were encountered:
Add regression test for #17
12ead36
Fix modline regex #17
d0224aa
Hi @fuero
thanks for your report, fixed but not yet merged to master.
Sorry, something went wrong.
No branches or pull requests
crmngr mistakenly interprets a
modulesdir
statement as a module declaration.To fix it:
In
crmngr/controlrepository.py
:Change the line 206 to
The text was updated successfully, but these errors were encountered: