Skip to content

Commit 628d804

Browse files
committed
2.1.8 - Read Changelog [skip ci]
1 parent 150dd2b commit 628d804

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## CHANGE LOG
22

3+
## 2.1.8 - 04/15/2017 - Levon Becker
4+
* Set to start awslogs at end of cloudwatch_logs recipe so it'll start streaming chef-client.log
5+
36
## 2.1.7 - 04/15/2017 - Levon Becker
47
* Switch Dockerfile to copy client.rb instead of creating it.
58
* Added restart notification to /etc/awslogs/awscli.conf template resource

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ARG chef_role=base
99
ARG chef_environment=bonusbits_base
1010
ARG chef_config_path=/opt/chef-repo
1111

12-
LABEL version="2.1.7" \
12+
LABEL version="2.1.8" \
1313
description="Amazon Linux Image built from bonusbits_base cookbook." \
1414
github="https://github.com/bonusbits/bonusbits_base" \
1515
website="https://www.bonusbits.com"

metadata.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
license 'MIT'
55
description 'Foundation Wrapper Cookbook for all Nodes'
66
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
7-
version '2.1.7'
7+
version '2.1.8'
88
chef_version '~> 12.5' if respond_to?(:chef_version)
99
source_url 'https://github.com/bonusbits/bonusbits_base'
1010
issues_url 'https://github.com/bonusbits/bonusbits_base/issues'

recipes/cloudwatch_logs.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@
102102
# Define Service
103103
service 'awslogs' do
104104
service_name 'awslogs'
105-
action [:enable]
106-
only_if { node['bonusbits_base']['aws']['inside'] }
105+
action [:enable, :start]
106+
only_if { inside_aws }
107107
end
108108
when 'windows'
109109
return

0 commit comments

Comments
 (0)