Skip to content
This repository has been archived by the owner on Oct 5, 2021. It is now read-only.

Commit

Permalink
Merge branch 'release-1.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
r8 committed Apr 12, 2015
2 parents b4fb315 + a8025da commit 4ce7aa1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## [1.0.1] - 2015-04-12

### Fixed
- Fix MySQL socket path

## [1.0.0] - 2015-03-24

### Changed
Expand Down
3 changes: 2 additions & 1 deletion cookbooks/vagrant_main/attributes/default.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
override['mysql']['initial_root_password'] = 'vagrant'
override['mysql']['version'] = '5.5'
override['mysql']['port'] = '3306'
override['mysql']['socket'] = '/var/run/mysqld/mysqld.sock'
override['mysql']['initial_root_password'] = 'vagrant'

override['percona']['apt_keyserver'] = 'keyserver.ubuntu.com'

Expand Down
3 changes: 2 additions & 1 deletion cookbooks/vagrant_main/recipes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@
end

# Install Mysql
mysql_service "default" do
mysql_service 'default' do
port node['mysql']['port']
version node['mysql']['version']
socket node['mysql']['socket']
initial_root_password node['mysql']['initial_root_password']
action [:create, :start]
end
Expand Down

0 comments on commit 4ce7aa1

Please sign in to comment.