diff options
author | mail_redacted_for_web | 2018-05-08 10:37:30 -0700 |
---|---|---|
committer | mail_redacted_for_web | 2018-05-08 10:46:30 -0700 |
commit | 36a278427582e6629141eb8539f658cf1604a528 (patch) | |
tree | 94d88f5c8ec26d528daa3426763ccdbcbd3e4664 /Puppetfile | |
parent | aaa85a0e03ed4036c6421426479e4cf66affb2dd (diff) | |
download | control-repo-template-36a278427582e6629141eb8539f658cf1604a528.tar.bz2 |
Resolve Rubocop warnings
* Removed the useless assignment in the config_version.rb error catching
* Single quote vs. double quote in Puppetfile
Diffstat (limited to 'Puppetfile')
-rw-r--r-- | Puppetfile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,10 +1,10 @@ -forge "https://forge.puppet.com" +forge 'https://forge.puppet.com' # Modules from the Puppet Forge # Versions should be updated to be the latest at the time you start -#mod "puppetlabs/inifile", '1.5.0' -#mod "puppetlabs/stdlib", '4.11.0' -#mod "puppetlabs/concat", '2.1.0' +#mod 'puppetlabs/inifile', '1.5.0' +#mod 'puppetlabs/stdlib', '4.11.0' +#mod 'puppetlabs/concat', '2.1.0' # Modules from Git # Examples: https://github.com/puppetlabs/r10k/blob/master/doc/puppetfile.mkd#examples |