fix mysql deploy, does a local vagrant config really need a crazy mysql password

This commit is contained in:
John Bintz 2012-01-24 14:52:37 -05:00
parent e110d579ed
commit 53670f35ff
3 changed files with 5 additions and 5 deletions

2
Vagrantfile vendored
View File

@ -33,7 +33,7 @@ Vagrant::Config.run do |config|
# to this Vagrantfile), and adding some recipes and/or roles.
config.vm.provision :chef_solo do |chef|
chef.cookbooks_path = "cookbooks"
# chef.add_recipe "vim"
chef.add_recipe "vim"
# chef.add_recipe "zsh"
# chef.add_recipe "zlib"
# chef.add_recipe "git"

View File

@ -22,9 +22,9 @@
include_recipe "mysql::client"
# generate all passwords
node.set_unless['mysql']['server_debian_password'] = secure_password
node.set_unless['mysql']['server_root_password'] = secure_password
node.set_unless['mysql']['server_repl_password'] = secure_password
node.set_unless['mysql']['server_debian_password'] = 'password'
node.set_unless['mysql']['server_root_password'] = 'password'
node.set_unless['mysql']['server_repl_password'] = 'password'
if platform?(%w{debian ubuntu})

View File

@ -21,7 +21,7 @@ end
attribute "wordpress/version",
:display_name => "Wordpress download version",
:description => "Version of Wordpress to download from the Wordpress site.",
:default => "3.0.4"
:default => "latest"
attribute "wordpress/checksum",
:display_name => "Wordpress tarball checksum",