Skip to content

Commit 44a3253

Browse files
committed
update version and changelog
2 parents 0ab8ef8 + 15a4d2e commit 44a3253

File tree

5 files changed

+18
-1
lines changed

5 files changed

+18
-1
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ cloudstack CHANGELOG
33

44
This file is used to list changes made in each version of the co-cloudstack cookbook.
55

6+
4.1.2
7+
-----
8+
- khos2ow - add default metadata expire to cloudstack repo
9+
10+
4.1.1
11+
-----
12+
- khos2ow - add server-id for mysql
13+
14+
4.1.0
15+
-----
16+
- khos2ow - add support for enabling/disabling cloudstack repo
17+
618
4.0.8
719
-----
820
- put mysql password in single-quotes, otherwise some hardened passwords are not interpreted correctly and logins fail.

attributes/default.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
default['cloudstack']['repo_url'] = "http://cloudstack.apt-get.eu/centos/$releasever/#{node['cloudstack']['release_major']}/"
3535
default['cloudstack']['repo_sign'] = ''
3636
#default['cloudstack']['repo_sign'] = 'http://cloudstack.apt-get.eu/RPM-GPG-KEY'
37+
default['cloudstack']['repo_enabled'] = true
38+
default['cloudstack']['repo_metadata_expire'] = '6h'
3739
when 'ubuntu', 'debian'
3840
default['cloudstack']['repo_url'] = "http://cloudstack.apt-get.eu/ubuntu"
3941
default['cloudstack']['repo_sign'] = 'http://cloudstack.apt-get.eu/release.asc'

metadata.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
license 'Apache 2.0'
55
description 'Installs/Configures cloudstack'
66
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
7-
version '4.0.8'
7+
version '4.1.2'
88

99
source_url 'https://github.com/cloudops/cookbook_cloudstack'
1010
issues_url 'https://github.com/cloudops/cookbook_cloudstack/issues'

recipes/repo_rhel.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
yum_repository 'cloudstack' do
2323
description 'Apache Cloudstack'
2424
baseurl node['cloudstack']['repo_url']
25+
enabled node['cloudstack']['repo_enabled']
26+
metadata_expire node['cloudstack']['repo_metadata_expire']
2527
gpgkey node['cloudstack']['repo_sign']
2628
gpgcheck node['cloudstack']['repo_sign'].empty? ? false : true
2729
action :create

templates/default/cloudstack.cnf.erb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ innodb_rollback_on_timeout = <%= @innodb_rollback_on_timeout %>
33
innodb_lock_wait_timeout = <%= @innodb_lock_wait_timeout %>
44
max_connections = <%= @max_connections %>
55
log-bin = mysql-bin
6+
server-id = 1
67
binlog-format = 'ROW'

0 commit comments

Comments
 (0)