Skip to content

Commit

Permalink
Merge pull request #180 from varunpanvelkar/script_source_fix
Browse files Browse the repository at this point in the history
fix missing method error
  • Loading branch information
sumo-drosiek committed May 6, 2021
2 parents 1bbd691 + 8e26179 commit 5850bb1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).

This CHANGELOG (now) follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
## [Unreleased]
### Fixed
- fixes an issue with the install action caused by a missing attribute

## [1.5.0] - 2021-01-06
### Added
Expand Down
4 changes: 2 additions & 2 deletions templates/default/user.properties.erb
Expand Up @@ -29,8 +29,8 @@ name=<%= @resource.collector_name %>
<%= "syncSources=#{@resource.sync_sources}" unless @resource.sync_sources.nil? %>
<%= "ephemeral=#{@resource.ephemeral}" unless @resource.ephemeral.nil? %>
<%= "clobber=#{@resource.clobber}" unless @resource.clobber.nil? %>
<%= "enableScriptSource=#{@resource.enable_script_source}" unless @resource.disable_script_source.nil? %>
<%= "enableActionSource=#{@resource.enable_action_source}" unless @resource.disable_action_source.nil? %>
<%= "enableScriptSource=#{@resource.enable_script_source}" unless @resource.enable_script_source.nil? %>
<%= "enableActionSource=#{@resource.enable_action_source}" unless @resource.enable_action_source.nil? %>
<%= "disableUpgrade=#{@resource.disable_upgrade}" unless @resource.disable_upgrade.nil? %>
<%= "timeZone=#{@resource.time_zone}" unless @resource.time_zone.nil? %>
<%= "targetCPU=#{@resource.target_cpu}" unless @resource.target_cpu.nil? %>
Expand Down

0 comments on commit 5850bb1

Please sign in to comment.