File tree Expand file tree Collapse file tree 5 files changed +18
-1
lines changed Expand file tree Collapse file tree 5 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,18 @@ cloudstack CHANGELOG
33
44This 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+
6184.0.8
719-----
820- put mysql password in single-quotes, otherwise some hardened passwords are not interpreted correctly and logins fail.
Original file line number Diff line number Diff line change 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'
3739when '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'
Original file line number Diff line number Diff line change 44license 'Apache 2.0'
55description 'Installs/Configures cloudstack'
66long_description IO . read ( File . join ( File . dirname ( __FILE__ ) , 'README.md' ) )
7- version '4.0.8 '
7+ version '4.1.2 '
88
99source_url 'https://github.com/cloudops/cookbook_cloudstack'
1010issues_url 'https://github.com/cloudops/cookbook_cloudstack/issues'
Original file line number Diff line number Diff line change 2222yum_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
Original file line number Diff line number Diff line change @@ -3,4 +3,5 @@ innodb_rollback_on_timeout = <%= @innodb_rollback_on_timeout %>
33innodb_lock_wait_timeout = <%= @innodb_lock_wait_timeout %>
44max_connections = <%= @max_connections %>
55log-bin = mysql-bin
6+ server-id = 1
67binlog-format = 'ROW'
You can’t perform that action at this time.
0 commit comments