joerocklin / chef-mariadb

A cookbook for installing MariaDB, based on a fork of the Opscode Cookbook for MySQL.
Apache License 2.0
25 stars 24 forks source link

options not taking effect #18

Closed ghost closed 9 years ago

ghost commented 9 years ago

I have the following in attributes/defaults.rb:

default['mariadb']['remove_anonymous_users'] = true
default['mariadb']['remove_test_database'] = true
default['mariadb']['allow_remote_root']               = false
default['mariadb']['server_root_password'] = 'root'

and recipes/default.rb:

include_recipe "mariadb::server"

but after chef runs:

MariaDB [mysql]> select Host, User, Password from user;
+-----------------------+------+-------------------------------------------+
| Host                  | User | Password                                  |
+-----------------------+------+-------------------------------------------+
| localhost             | root |                                           |
| localhost.localdomain | root |                                           |
| 127.0.0.1             | root |                                           |
| ::1                   | root |                                           |
| localhost             |      |                                           |
| localhost.localdomain |      |                                           |
+-----------------------+------+-------------------------------------------+
6 rows in set (0.00 sec)
MariaDB [mysql]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| test               |
+--------------------+
4 rows in set (0.00 sec)

What am i doing wrong?

ghost commented 9 years ago

Here is the bizarre thing... If I run chef a second time, i get the following: ... and this still isn't the password from the attributes dir...

MariaDB [mysql]> select Host, User, Password from user;
+-----------------------+------+-------------------------------------------+
| Host                  | User | Password                                  |
+-----------------------+------+-------------------------------------------+
| localhost             | root | *FB04DAB90944E26A7AD61DBBEC71A4590A3E6A88 |
| localhost.localdomain | root |                                           |
| 127.0.0.1             | root |                                           |
| ::1                   | root |                                           |
| localhost             |      |                                           |
| localhost.localdomain |      |                                           |
+-----------------------+------+-------------------------------------------+
6 rows in set (0.00 sec)
MariaDB [mysql]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| test               |
+--------------------+
4 rows in set (0.00 sec)
bpieck commented 9 years ago

You set your password on your own instead using the secure-random password from cookbook? (edit: I thought first time, that it could be overwritten by the recipe if you set it on default level - but the set_unless issue should be resolved. So it shouldn't be a problem). You don't use node attribute whitelisting, do you? (I had some issues, with whitelisting attributes, when I used a encrypted store method for my passwords and whitelisting to not to save the password, which led to a similar error)

ghost commented 9 years ago

ah... I don't think so.

Never heard of 'node attribute whitelisting'. A quick search indicates it is another cookbook, so I'm definitely not using that.

I'm trying to build vagrant dev vm's, so it would be helpful to know the root password for remote access to create and drop databases.

I was working with more code to create a second db user, but all that code is disabled (and doesn't work because the root password gets changed to something unknown.)

I'll try removing the password entry. At some point the test db was removed, but I do recall that the root password gets set on the 2nd 'vagrant provision' run.

ghost commented 9 years ago

Here are some examples: Attempt 1

starting with a working vm:
# yum remove mysql-server
# rm -rf /var/lib/mysql

attributes/defaults.rb:
default['mariadb']['version'] = '10.0'
default['mariadb']['server']['packages'] = ['MariaDB-server']

vm:
mysql didn’t start

chef:
[2014-09-25T15:12:22+00:00] INFO: template[/etc/mysql_grants.sql] sending run action to execute[install-grants] (immediate)

================================================================================
Error executing action `run` on resource 'execute[install-grants]'
================================================================================

Mixlib::ShellOut::ShellCommandFailed
------------------------------------
Expected process to exit with [0], but received '1'
---- Begin output of /usr/bin/mysql -u root  -p'ynK2R9cikiJbzCat220g' < /etc/mysql_grants.sql ----
STDOUT: 
STDERR: ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2 "No such file or directory")
---- End output of /usr/bin/mysql -u root  -p'ynK2R9cikiJbzCat220g' < /etc/mysql_grants.sql ----
Ran /usr/bin/mysql -u root  -p'ynK2R9cikiJbzCat220g' < /etc/mysql_grants.sql returned 1

Resource Declaration:
---------------------
# In /var/chef/cache/cookbooks/mariadb/recipes/_server_rhel.rb

 60: execute 'install-grants' do
 61:   command cmd
 62:   action :nothing
 63:   notifies :restart, 'service[mysql]', :immediately
 64: end
 65: 

Compiled Resource:
------------------
# Declared in /var/chef/cache/cookbooks/mariadb/recipes/_server_rhel.rb:60:in `from_file'

execute("install-grants") do
  action [:nothing]
  retries 0
  retry_delay 2
  guard_interpreter :default
  command "/usr/bin/mysql -u root  -p'ynK2R9cikiJbzCat220g' < /etc/mysql_grants.sql"
  backup 5
  returns 0
  cookbook_name "mariadb"
  recipe_name "_server_rhel"
end

manually started mariadb:
/etc/init.d/mysql start

[2014-09-25T15:12:22+00:00] INFO: Running queued delayed notifications before re-raising exception

db:
MariaDB [mysql]> select Host,User,Password from user;
+-----------------------+------+----------+
| Host                  | User | Password |
+-----------------------+------+----------+
| localhost             | root |          |
| localhost.localdomain | root |          |
| 127.0.0.1             | root |          |
| ::1                   | root |          |
| localhost             |      |          |
| localhost.localdomain |      |          |
+-----------------------+------+----------+
6 rows in set (0.00 sec)

attributes/defaults.rb:
default['mariadb']['version'] = '10.0'
default['mariadb']['server']['packages'] = ['MariaDB-server']

chef:
[2014-09-25T15:16:23+00:00] INFO: package[MariaDB-server] installing MariaDB-server-10.0.13-1.el6 from mariadb repository
[2014-09-25T15:17:41+00:00] INFO: service[mysql] started

db:
MariaDB [mysql]> select Host,User,Password from user;
+-----------------------+------+----------+
| Host                  | User | Password |
+-----------------------+------+----------+
| localhost             | root |          |
| localhost.localdomain | root |          |
| 127.0.0.1             | root |          |
| ::1                   | root |          |
| localhost             |      |          |
| localhost.localdomain |      |          |
+-----------------------+------+----------+
6 rows in set (0.00 sec)

2nd run provision…

chef:
[2014-09-25T15:20:05+00:00] INFO: execute[assign-root-password] ran successfully

db:
MariaDB [mysql]> select Host,User,Password from user;
+-----------------------+------+-------------------------------------------+
| Host                  | User | Password                                  |
+-----------------------+------+-------------------------------------------+
| localhost             | root | *FB04DAB90944E26A7AD61DBBEC71A4590A3E6A88 |
| localhost.localdomain | root |                                           |
| 127.0.0.1             | root |                                           |
| ::1                   | root |                                           |
| localhost             |      |                                           |
| localhost.localdomain |      |                                           |
+-----------------------+------+-------------------------------------------+
6 rows in set (0.00 sec)

3rd run provision…
chef:
no mysql parts run

MariaDB [mysql]> select Host,User,Password from user;
+-----------------------+------+-------------------------------------------+
| Host                  | User | Password                                  |
+-----------------------+------+-------------------------------------------+
| localhost             | root | *FB04DAB90944E26A7AD61DBBEC71A4590A3E6A88 |
| localhost.localdomain | root |                                           |
| 127.0.0.1             | root |                                           |
| ::1                   | root |                                           |
| localhost             |      |                                           |
| localhost.localdomain |      |                                           |
+-----------------------+------+-------------------------------------------+
6 rows in set (0.00 sec)

Attempt 2:

# yum remove mysql-server
# rm -rf /var/lib/mysql

attributes/defaults.rb:
default['mariadb']['version'] = '10.0'
default['mariadb']['server']['packages'] = ['MariaDB-server']
default['mariadb']['remove_test_database'] = true

vm:
mysql didn’t start

chef:
[2014-09-25T15:24:31+00:00] INFO: package[MariaDB-server] installing MariaDB-server-10.0.13-1.el6 from mariadb repository
[2014-09-25T15:25:03+00:00] INFO: template[/etc/mysql_grants.sql] backed up to /var/chef/backup/etc/mysql_grants.sql.chef-20140925152503.735031
[2014-09-25T15:25:03+00:00] INFO: template[/etc/mysql_grants.sql] removed backup at /var/chef/backup/./etc/mysql_grants.sql.chef-20140924174255.207606
[2014-09-25T15:25:03+00:00] INFO: template[/etc/mysql_grants.sql] updated file contents /etc/mysql_grants.sql
[2014-09-25T15:25:03+00:00] INFO: template[/etc/mysql_grants.sql] sending run action to execute[install-grants] (immediate)

================================================================================
Error executing action `run` on resource 'execute[install-grants]'
================================================================================

Mixlib::ShellOut::ShellCommandFailed
------------------------------------
Expected process to exit with [0], but received '1'
---- Begin output of /usr/bin/mysql -u root  -p'ynK2R9cikiJbzCat220g' < /etc/mysql_grants.sql ----
STDOUT: 
STDERR: ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2 "No such file or directory")
---- End output of /usr/bin/mysql -u root  -p'ynK2R9cikiJbzCat220g' < /etc/mysql_grants.sql ----
Ran /usr/bin/mysql -u root  -p'ynK2R9cikiJbzCat220g' < /etc/mysql_grants.sql returned 1

Resource Declaration:
---------------------
# In /var/chef/cache/cookbooks/mariadb/recipes/_server_rhel.rb

 60: execute 'install-grants' do
 61:   command cmd
 62:   action :nothing
 63:   notifies :restart, 'service[mysql]', :immediately
 64: end
 65: 

Compiled Resource:
------------------
# Declared in /var/chef/cache/cookbooks/mariadb/recipes/_server_rhel.rb:60:in `from_file'

execute("install-grants") do
  action [:nothing]
  retries 0
  retry_delay 2
  guard_interpreter :default
  command "/usr/bin/mysql -u root  -p'ynK2R9cikiJbzCat220g' < /etc/mysql_grants.sql"
  backup 5
  returns 0
  cookbook_name "mariadb"
  recipe_name "_server_rhel"
end

[2014-09-25T15:25:04+00:00] INFO: Running queued delayed notifications before re-raising exception

db:
MariaDB [mysql]> select Host,User,Password from user;
+-----------------------+------+----------+
| Host                  | User | Password |
+-----------------------+------+----------+
| localhost             | root |          |
| localhost.localdomain | root |          |
| 127.0.0.1             | root |          |
| ::1                   | root |          |
| localhost             |      |          |
| localhost.localdomain |      |          |
+-----------------------+------+----------+
6 rows in set (0.00 sec)

manually started mysql:
/etc/init.d/mysql start

——— 2nd provision run ———
chef:
[2014-09-25T15:29:53+00:00] INFO: execute[assign-root-password] ran successfully

db:
MariaDB [mysql]> select Host,User,Password from user;
+-----------------------+------+-------------------------------------------+
| Host                  | User | Password                                  |
+-----------------------+------+-------------------------------------------+
| localhost             | root | *FB04DAB90944E26A7AD61DBBEC71A4590A3E6A88 |
| localhost.localdomain | root |                                           |
| 127.0.0.1             | root |                                           |
| ::1                   | root |                                           |
| localhost             |      |                                           |
| localhost.localdomain |      |                                           |
+-----------------------+------+-------------------------------------------+
6 rows in set (0.00 sec)

——— 3rd provision run ———

chef:
[2014-09-25T15:20:05+00:00] INFO: execute[assign-root-password] ran successfully

db:
MariaDB [mysql]> select Host,User,Password from user;
+-----------------------+------+-------------------------------------------+
| Host                  | User | Password                                  |
+-----------------------+------+-------------------------------------------+
| localhost             | root | *FB04DAB90944E26A7AD61DBBEC71A4590A3E6A88 |
| localhost.localdomain | root |                                           |
| 127.0.0.1             | root |                                           |
| ::1                   | root |                                           |
| localhost             |      |                                           |
| localhost.localdomain |      |                                           |
+-----------------------+------+-------------------------------------------+
6 rows in set (0.00 sec)

DBs… 
[root@localhost ~]# mysqlshow
mysqlshow: Access denied for user 'root'@'localhost' (using password: NO)
[root@localhost ~]# ls /var/lib/mysql/
aria_log.00000001  ib_logfile1                mysql.sock
aria_log_control   localhost.localdomain.err  performance_schema
ibdata1            multi-master.info          test
ib_logfile0        mysql

—- 4th run ———
chef:
no mysql parts run

MariaDB [mysql]> select Host,User,Password from user;
+-----------------------+------+-------------------------------------------+
| Host                  | User | Password                                  |
+-----------------------+------+-------------------------------------------+
| localhost             | root | *FB04DAB90944E26A7AD61DBBEC71A4590A3E6A88 |
| localhost.localdomain | root |                                           |
| 127.0.0.1             | root |                                           |
| ::1                   | root |                                           |
| localhost             |      |                                           |
| localhost.localdomain |      |                                           |
+-----------------------+------+-------------------------------------------+
6 rows in set (0.00 sec)

Attempt 3

host# vagrant destroy
host# vagrant up

host# vagrant provision

attributes/default.rb:
default['mariadb']['server']['packages'] = ['MariaDB-server']

chef output: (includes all output)
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

[2014-09-25T15:39:58+00:00] INFO: *** Chef 11.14.6 ***
[2014-09-25T15:39:58+00:00] INFO: Chef-client pid: 2913
[2014-09-25T15:40:00+00:00] INFO: Client key /etc/chef/client.pem is not present - registering
[2014-09-25T15:40:01+00:00] INFO: HTTP Request Returned 404 Object Not Found: error
[2014-09-25T15:40:01+00:00] INFO: Setting the run_list to ["role[development]"] from CLI options
[2014-09-25T15:40:01+00:00] INFO: Run List is [role[development]]
[2014-09-25T15:40:01+00:00] INFO: Run List expands to [zCrowd_management_server]
[2014-09-25T15:40:01+00:00] INFO: Starting Chef Run for mysystem
[2014-09-25T15:40:01+00:00] INFO: Running start handlers
[2014-09-25T15:40:01+00:00] INFO: Start handlers complete.
[2014-09-25T15:40:02+00:00] INFO: HTTP Request Returned 404 Object Not Found: 
[2014-09-25T15:40:02+00:00] INFO: Loading cookbooks [zCrowd_management_server@0.1.0, zCrowd_management@0.1.0, subversion@0.1.0, python@1.4.6, build-essential@2.0.6, yum-epel@0.5.1, yum@3.3.0, mariadb@2.0.0, apt@2.5.3, openssl@2.0.0, chef-sugar@2.2.0, developer_environment@0.1.0, base_environment@0.1.0, apache2@2.0.0, iptables@0.14.0, logrotate@1.6.0, pacman@1.1.1]
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/zCrowd_management_server/recipes/users-mysql.rb in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/zCrowd_management_server/metadata.rb in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/zCrowd_management/attributes/default.rb in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/zCrowd_management_server/recipes/default.rb in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/zCrowd_management/CHANGELOG.md in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/zCrowd_management/README.md in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/zCrowd_management_server/README.md in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/zCrowd_management_server/CHANGELOG.md in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/zCrowd_management/recipes/default.rb in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/zCrowd_management_server/attributes/default.rb in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/zCrowd_management/metadata.rb in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/subversion/README.md in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/python/resources/virtualenv.rb in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/subversion/recipes/default.rb in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/subversion/CHANGELOG.md in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/subversion/metadata.rb in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/python/providers/pip.rb in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/python/resources/pip.rb in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/python/providers/virtualenv.rb in the cache.
[2014-09-25T15:40:03+00:00] INFO: Storing updated cookbooks/python/recipes/source.rb in the cache.
[2014-09-25T15:40:04+00:00] INFO: Storing updated cookbooks/python/recipes/virtualenv.rb in the cache.
[2014-09-25T15:40:04+00:00] INFO: Storing updated cookbooks/python/recipes/default.rb in the cache.
[2014-09-25T15:40:04+00:00] INFO: Storing updated cookbooks/python/recipes/package.rb in the cache.
[2014-09-25T15:40:04+00:00] INFO: Storing updated cookbooks/python/recipes/pip.rb in the cache.
[2014-09-25T15:40:04+00:00] INFO: Storing updated cookbooks/python/libraries/matchers.rb in the cache.
[2014-09-25T15:40:04+00:00] INFO: Storing updated cookbooks/python/ZPL.txt in the cache.
[2014-09-25T15:40:04+00:00] INFO: Storing updated cookbooks/python/attributes/default.rb in the cache.
[2014-09-25T15:40:04+00:00] INFO: Storing updated cookbooks/python/.kitchen.yml in the cache.
[2014-09-25T15:40:04+00:00] INFO: Storing updated cookbooks/python/README.md in the cache.
[2014-09-25T15:40:04+00:00] INFO: Storing updated cookbooks/python/.gitignore in the cache.
[2014-09-25T15:40:04+00:00] INFO: Storing updated cookbooks/python/Berksfile.lock in the cache.
[2014-09-25T15:40:04+00:00] INFO: Storing updated cookbooks/python/CHANGELOG.md in the cache.
[2014-09-25T15:40:04+00:00] INFO: Storing updated cookbooks/python/Gemfile.lock in the cache.
[2014-09-25T15:40:04+00:00] INFO: Storing updated cookbooks/python/NOTICE.txt in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/python/.travis.yml in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/python/metadata.rb in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/python/metadata.json in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/python/Gemfile in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/python/TESTING.md in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/python/Berksfile in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/python/LICENSE in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/python/Rakefile in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/build-essential/recipes/_smartos.rb in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/build-essential/recipes/_rhel.rb in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/build-essential/recipes/_freebsd.rb in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/build-essential/recipes/_solaris2.rb in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/build-essential/recipes/_mac_os_x.rb in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/build-essential/recipes/_debian.rb in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/build-essential/recipes/_fedora.rb in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/build-essential/recipes/default.rb in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/build-essential/recipes/_suse.rb in the cache.
[2014-09-25T15:40:05+00:00] INFO: Storing updated cookbooks/build-essential/recipes/_omnios.rb in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/build-essential/libraries/timing.rb in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/build-essential/libraries/matchers.rb in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/build-essential/libraries/xcode_command_line_tools.rb in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/build-essential/metadata.rb in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/build-essential/CHANGELOG.md in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/build-essential/attributes/default.rb in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/build-essential/metadata.json in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/build-essential/README.md in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/yum-epel/recipes/default.rb in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/yum-epel/attributes/epel-source.rb in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/yum-epel/attributes/epel-testing-source.rb in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/yum-epel/attributes/epel-debuginfo.rb in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/yum-epel/attributes/epel-testing-debuginfo.rb in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/yum-epel/attributes/epel.rb in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/yum-epel/attributes/default.rb in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/yum-epel/CHANGELOG.md in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/yum-epel/attributes/epel-testing.rb in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/yum-epel/README.md in the cache.
[2014-09-25T15:40:06+00:00] INFO: Storing updated cookbooks/yum-epel/metadata.rb in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/yum-epel/metadata.json in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/yum/resources/globalconfig.rb in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/yum/resources/repository.rb in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/yum/providers/globalconfig.rb in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/yum/providers/repository.rb in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/yum/libraries/matchers.rb in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/yum/README.md in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/yum/recipes/default.rb in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/yum/attributes/main.rb in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/yum/CHANGELOG.md in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/yum/metadata.json in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/mariadb/recipes/server.rb in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/mariadb/recipes/server_ec2.rb in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/yum/metadata.rb in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/mariadb/recipes/ruby.rb in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/mariadb/recipes/mariadb_repo.rb in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/mariadb/recipes/client.rb in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/mariadb/recipes/_server_windows.rb in the cache.
[2014-09-25T15:40:07+00:00] INFO: Storing updated cookbooks/mariadb/recipes/_server_mac_os_x.rb in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/recipes/default.rb in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/recipes/_server_debian.rb in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/attributes/server_mac_os_x.rb in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/libraries/helpers.rb in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/attributes/server_freebsd.rb in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/recipes/_server_rhel.rb in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/attributes/server_fedora.rb in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/attributes/server.rb in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/attributes/client.rb in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/attributes/server_rhel.rb in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/attributes/server_debian.rb in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/attributes/default.rb in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/README.md in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/attributes/server_suse.rb in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/chefignore in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/attributes/server_windows.rb in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/.kitchen.yml in the cache.
[2014-09-25T15:40:08+00:00] INFO: Storing updated cookbooks/mariadb/.gitignore in the cache.
[2014-09-25T15:40:09+00:00] INFO: Storing updated cookbooks/mariadb/CHANGELOG.md in the cache.
[2014-09-25T15:40:09+00:00] INFO: Storing updated cookbooks/mariadb/Vagrantfile in the cache.
[2014-09-25T15:40:09+00:00] INFO: Storing updated cookbooks/mariadb/.travis.yml in the cache.
[2014-09-25T15:40:09+00:00] INFO: Storing updated cookbooks/mariadb/Thorfile in the cache.
[2014-09-25T15:40:09+00:00] INFO: Storing updated cookbooks/mariadb/CONTRIBUTING.md in the cache.
[2014-09-25T15:40:09+00:00] INFO: Storing updated cookbooks/mariadb/Gemfile in the cache.
[2014-09-25T15:40:09+00:00] INFO: Storing updated cookbooks/mariadb/.rubocop.yml in the cache.
[2014-09-25T15:40:09+00:00] INFO: Storing updated cookbooks/mariadb/metadata.rb in the cache.
[2014-09-25T15:40:09+00:00] INFO: Storing updated cookbooks/mariadb/Berksfile in the cache.
[2014-09-25T15:40:09+00:00] INFO: Storing updated cookbooks/mariadb/TESTING.md in the cache.
[2014-09-25T15:40:09+00:00] INFO: Storing updated cookbooks/mariadb/Strainerfile in the cache.
[2014-09-25T15:40:09+00:00] INFO: Storing updated cookbooks/mariadb/LICENSE in the cache.
[2014-09-25T15:40:09+00:00] INFO: Storing updated cookbooks/mariadb/.gitattributes in the cache.
[2014-09-25T15:40:09+00:00] INFO: Storing updated cookbooks/apt/resources/repository.rb in the cache.
[2014-09-25T15:40:09+00:00] INFO: Storing updated cookbooks/apt/resources/preference.rb in the cache.
[2014-09-25T15:40:09+00:00] INFO: Storing updated cookbooks/apt/providers/preference.rb in the cache.
[2014-09-25T15:40:09+00:00] INFO: Storing updated cookbooks/apt/providers/repository.rb in the cache.
[2014-09-25T15:40:10+00:00] INFO: Storing updated cookbooks/apt/recipes/cacher-client.rb in the cache.
[2014-09-25T15:40:10+00:00] INFO: Storing updated cookbooks/apt/recipes/default.rb in the cache.
[2014-09-25T15:40:10+00:00] INFO: Storing updated cookbooks/apt/recipes/unattended-upgrades.rb in the cache.
[2014-09-25T15:40:10+00:00] INFO: Storing updated cookbooks/apt/recipes/cacher-ng.rb in the cache.
[2014-09-25T15:40:10+00:00] INFO: Storing updated cookbooks/apt/libraries/helpers.rb in the cache.
[2014-09-25T15:40:10+00:00] INFO: Storing updated cookbooks/apt/libraries/network.rb in the cache.
[2014-09-25T15:40:10+00:00] INFO: Storing updated cookbooks/apt/libraries/matchers.rb in the cache.
[2014-09-25T15:40:10+00:00] INFO: Storing updated cookbooks/apt/README.md in the cache.
[2014-09-25T15:40:10+00:00] INFO: Storing updated cookbooks/apt/attributes/default.rb in the cache.
[2014-09-25T15:40:10+00:00] INFO: Storing updated cookbooks/apt/CHANGELOG.md in the cache.
[2014-09-25T15:40:10+00:00] INFO: Storing updated cookbooks/apt/metadata.rb in the cache.
[2014-09-25T15:40:10+00:00] INFO: Storing updated cookbooks/openssl/resources/x509.rb in the cache.
[2014-09-25T15:40:10+00:00] INFO: Storing updated cookbooks/apt/metadata.json in the cache.
[2014-09-25T15:40:10+00:00] INFO: Storing updated cookbooks/openssl/providers/x509.rb in the cache.
[2014-09-25T15:40:10+00:00] INFO: Storing updated cookbooks/openssl/recipes/upgrade.rb in the cache.
[2014-09-25T15:40:10+00:00] INFO: Storing updated cookbooks/openssl/recipes/default.rb in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/openssl/libraries/secure_password.rb in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/openssl/README.md in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/openssl/attributes/default.rb in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/openssl/CHANGELOG.md in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/openssl/metadata.rb in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/chef-sugar/recipes/default.rb in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/openssl/metadata.json in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/chef-sugar/CHANGELOG.md in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/chef-sugar/README.md in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/chef-sugar/metadata.rb in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/developer_environment/attributes/default.rb in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/developer_environment/README.md in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/developer_environment/recipes/default.rb in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/chef-sugar/metadata.json in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/developer_environment/CHANGELOG.md in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/developer_environment/metadata.rb in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/base_environment/recipes/default.rb in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/base_environment/attributes/default.rb in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/base_environment/README.md in the cache.
[2014-09-25T15:40:11+00:00] INFO: Storing updated cookbooks/base_environment/CHANGELOG.md in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/base_environment/metadata.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_actions.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_slotmem_shm.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_dav_svn.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_session.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_proxy_fcgi.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_xml2enc.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mpm_itk.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_vhost_alias.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_perl.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_cgi.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_heartbeat.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_lbmethod_heartbeat.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_macro.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_speling.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authz_default.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_ldap.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authz_groupfile.rb in the cache.
[2014-09-25T15:40:12+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_dav.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_wsgi.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_include.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_auth_form.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_filter.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_heartmonitor.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_userdir.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/iptables.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_auth_cas.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authn_socache.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_alias.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_deflate.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_lbmethod_bybusyness.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_sed.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_usertrack.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_dbd.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_proxy_wstunnel.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_lbmethod_bytraffic.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_expires.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_fastcgi.rb in the cache.
[2014-09-25T15:40:13+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_proxy_ftp.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_proxy_balancer.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mpm_worker.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_log_config.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_dav_lock.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_status.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authn_file.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authz_dbd.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_proxy_express.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_proxy_html.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_log_debug.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_slotmem_plain.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_socache_dbm.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_php5.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_python.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_dir.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_ratelimit.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_dav_fs.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_session_crypto.rb in the cache.
[2014-09-25T15:40:14+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_session_cookie.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_unique_id.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_reqtimeout.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_log_forensic.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_cache.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_pagespeed.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_echo.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authn_dbm.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_info.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_logio.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_substitute.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_buffer.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_setenvif.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_apreq2.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_proxy_http.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_socache_memcache.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_remoteip.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_fcgid.rb in the cache.
[2014-09-25T15:40:15+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_auth_basic.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_cgid.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_dialup.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_suexec.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_negotiation.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_file_cache.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mpm_prefork.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_autoindex.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_lua.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_auth_digest.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authn_anon.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_proxy_fdpass.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authz_dbm.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_mime_magic.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_xsendfile.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/god_monitor.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_proxy.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_cloudflare.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_ssl.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_asis.rb in the cache.
[2014-09-25T15:40:16+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_cache_socache.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_proxy_scgi.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authz_core.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_env.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/logrotate.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_headers.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_lbmethod_byrequests.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/default.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authnz_ldap.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_ext_filter.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authn_dbd.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_access_compat.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_auth_openid.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_rewrite.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authn_core.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_allowmethods.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authz_host.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_unixd.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_charset_lite.rb in the cache.
[2014-09-25T15:40:17+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_proxy_connect.rb in the cache.
[2014-09-25T15:40:18+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_proxy_ajp.rb in the cache.
[2014-09-25T15:40:18+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_dump_io.rb in the cache.
[2014-09-25T15:40:18+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_reflector.rb in the cache.
[2014-09-25T15:40:18+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_session_dbd.rb in the cache.
[2014-09-25T15:40:18+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_mime.rb in the cache.
[2014-09-25T15:40:18+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_data.rb in the cache.
[2014-09-25T15:40:18+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_socache_shmcb.rb in the cache.
[2014-09-25T15:40:18+00:00] INFO: Storing updated cookbooks/apache2/recipes/mpm_event.rb in the cache.
[2014-09-25T15:40:18+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_jk.rb in the cache.
[2014-09-25T15:40:18+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authz_user.rb in the cache.
[2014-09-25T15:40:18+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_request.rb in the cache.
[2014-09-25T15:40:18+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_cache_disk.rb in the cache.
[2014-09-25T15:40:18+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_systemd.rb in the cache.
[2014-09-25T15:40:18+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authz_owner.rb in the cache.
[2014-09-25T15:40:18+00:00] INFO: Storing updated cookbooks/apache2/definitions/apache_module.rb in the cache.
[2014-09-25T15:40:18+00:00] INFO: Storing updated cookbooks/apache2/definitions/apache_config.rb in the cache.
[2014-09-25T15:40:18+00:00] INFO: Storing updated cookbooks/apache2/definitions/apache_site.rb in the cache.
[2014-09-25T15:40:19+00:00] INFO: Storing updated cookbooks/apache2/definitions/apache_conf.rb in the cache.
[2014-09-25T15:40:19+00:00] INFO: Storing updated cookbooks/apache2/attributes/mod_auth_cas.rb in the cache.
[2014-09-25T15:40:19+00:00] INFO: Storing updated cookbooks/apache2/definitions/apache_mod.rb in the cache.
[2014-09-25T15:40:19+00:00] INFO: Storing updated cookbooks/apache2/definitions/web_app.rb in the cache.
[2014-09-25T15:40:19+00:00] INFO: Storing updated cookbooks/apache2/attributes/mod_fastcgi.rb in the cache.
[2014-09-25T15:40:19+00:00] INFO: Storing updated cookbooks/apache2/attributes/mod_pagespeed.rb in the cache.
[2014-09-25T15:40:19+00:00] INFO: Storing updated cookbooks/apache2/attributes/mod_ssl.rb in the cache.
[2014-09-25T15:40:19+00:00] INFO: Storing updated cookbooks/apache2/attributes/default.rb in the cache.
[2014-09-25T15:40:19+00:00] INFO: Storing updated cookbooks/apache2/attributes/mod_auth_openid.rb in the cache.
[2014-09-25T15:40:19+00:00] INFO: Storing updated cookbooks/apache2/CHANGELOG.md in the cache.
[2014-09-25T15:40:19+00:00] INFO: Storing updated cookbooks/apache2/README.md in the cache.
[2014-09-25T15:40:19+00:00] INFO: Storing updated cookbooks/iptables/recipes/default.rb in the cache.
[2014-09-25T15:40:19+00:00] INFO: Storing updated cookbooks/iptables/recipes/disabled.rb in the cache.
[2014-09-25T15:40:19+00:00] INFO: Storing updated cookbooks/apache2/metadata.rb in the cache.
[2014-09-25T15:40:19+00:00] INFO: Storing updated cookbooks/apache2/metadata.json in the cache.
[2014-09-25T15:40:19+00:00] INFO: Storing updated cookbooks/iptables/definitions/iptables_rule.rb in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/iptables/attributes/default.rb in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/iptables/CHANGELOG.md in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/iptables/README.md in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/iptables/metadata.rb in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/logrotate/recipes/default.rb in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/iptables/metadata.json in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/logrotate/recipes/global.rb in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/logrotate/definitions/logrotate_app.rb in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/logrotate/libraries/logrotate_config.rb in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/logrotate/attributes/default.rb in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/logrotate/.kitchen.yml in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/logrotate/.gitignore in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/logrotate/README.md in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/logrotate/Berksfile.lock in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/logrotate/CHANGELOG.md in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/logrotate/.travis.yml in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/logrotate/Gemfile.lock in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/logrotate/CONTRIBUTING.md in the cache.
[2014-09-25T15:40:20+00:00] INFO: Storing updated cookbooks/logrotate/Gemfile in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/logrotate/metadata.rb in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/logrotate/.rubocop.yml in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/logrotate/Berksfile in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/logrotate/metadata.json in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/logrotate/TESTING.md in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/logrotate/LICENSE in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/pacman/resources/aur.rb in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/pacman/resources/group.rb in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/pacman/providers/aur.rb in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/pacman/providers/group.rb in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/pacman/recipes/default.rb in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/pacman/README.md in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/pacman/.gitignore in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/pacman/CONTRIBUTING in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/pacman/CHANGELOG.md in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/pacman/Gemfile.lock in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/pacman/.travis.yml in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/pacman/Gemfile in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/pacman/metadata.rb in the cache.
[2014-09-25T15:40:21+00:00] INFO: Storing updated cookbooks/pacman/metadata.json in the cache.
[2014-09-25T15:40:22+00:00] INFO: Storing updated cookbooks/pacman/LICENSE in the cache.
[2014-09-25T15:40:22+00:00] INFO:  ++ zCrowd_management cookbook
[2014-09-25T15:40:22+00:00] INFO:  ++ developer_environment cookbook
[2014-09-25T15:40:22+00:00] INFO:  ++ Base Environment Cookbook
[2014-09-25T15:40:22+00:00] INFO:  ** Replacing Yum repo with local repo
[2014-09-25T15:40:22+00:00] INFO:  ** Adding sinfo script
[2014-09-25T15:40:22+00:00] INFO:  ** Installing mlocate
[2014-09-25T15:40:22+00:00] INFO:  ** Updating mlocate database
[2014-09-25T15:40:22+00:00] INFO:  ** Setting time to UTC
[2014-09-25T15:40:22+00:00] INFO:  ** Install vim-enhanced
[2014-09-25T15:40:22+00:00] INFO:  ** Adding .pystartup file
[2014-09-25T15:40:22+00:00] INFO:  ** Modifying .bash_profile (PYTHONSTARTUP & ENVIRONMENT & EDITOR)
[2014-09-25T15:40:22+00:00] WARN: Cloning resource attributes for package[MariaDB-client] from prior resource (CHEF-3694)
[2014-09-25T15:40:22+00:00] WARN: Previous package[MariaDB-client]: /var/chef/cache/cookbooks/mariadb/recipes/client.rb:57:in `block in from_file'
[2014-09-25T15:40:22+00:00] WARN: Current  package[MariaDB-client]: /var/chef/cache/cookbooks/zCrowd_management/recipes/default.rb:17:in `from_file'
[2014-09-25T15:40:22+00:00] INFO:  ** Install MariaDB client
[2014-09-25T15:40:22+00:00] INFO:  ** Install MySQL-python library
[2014-09-25T15:40:22+00:00] INFO:  ** Create zCrowd directory /home/zcrowd
[2014-09-25T15:40:22+00:00] INFO:  ** Check out zCrowd management code
[2014-09-25T15:40:22+00:00] INFO:  ** Setting up VirtualEnv
[2014-09-25T15:40:22+00:00] INFO:  ** Running pip install
[2014-09-25T15:40:22+00:00] INFO:  ** Modifying .bash_profile (DSHELL)
[2014-09-25T15:40:22+00:00] WARN: Cloning resource attributes for directory[/var/lib/mysql] from prior resource (CHEF-3694)
[2014-09-25T15:40:22+00:00] WARN: Previous directory[/var/lib/mysql]: /var/chef/cache/cookbooks/mariadb/recipes/_server_rhel.rb:11:in `block in from_file'
[2014-09-25T15:40:22+00:00] WARN: Current  directory[/var/lib/mysql]: /var/chef/cache/cookbooks/mariadb/recipes/_server_rhel.rb:20:in `from_file'
[2014-09-25T15:40:22+00:00] WARN: Cloning resource attributes for service[mysql] from prior resource (CHEF-3694)
[2014-09-25T15:40:22+00:00] WARN: Previous service[mysql]: /var/chef/cache/cookbooks/mariadb/recipes/_server_rhel.rb:38:in `from_file'
[2014-09-25T15:40:22+00:00] WARN: Current  service[mysql]: /var/chef/cache/cookbooks/mariadb/recipes/_server_rhel.rb:76:in `from_file'
[2014-09-25T15:40:22+00:00] WARN: Cloning resource attributes for directory[/var/lib/mysql] from prior resource (CHEF-3694)
[2014-09-25T15:40:22+00:00] WARN: Previous directory[/var/lib/mysql]: /var/chef/cache/cookbooks/mariadb/recipes/_server_rhel.rb:20:in `from_file'
[2014-09-25T15:40:22+00:00] WARN: Current  directory[/var/lib/mysql]: /var/chef/cache/cookbooks/mariadb/recipes/server.rb:75:in `from_file'
[2014-09-25T15:40:22+00:00] INFO:  ** Adding Apache
[2014-09-25T15:40:23+00:00] INFO:  ** Adding Apache Virtualhost
[2014-09-25T15:40:23+00:00] INFO:  ** Modify zCrowd directory permissions
[2014-09-25T15:40:23+00:00] INFO: cookbook_file[replace_centos6_yum_base_repo] backed up to /var/chef/backup/etc/yum.repos.d/CentOS-Base.repo.chef-20140925154023.251901
[2014-09-25T15:40:23+00:00] INFO: cookbook_file[replace_centos6_yum_base_repo] updated file contents /etc/yum.repos.d/CentOS-Base.repo
[2014-09-25T15:40:23+00:00] INFO: cookbook_file[replace_centos6_yum_base_repo] sending install action to package[vim-enhanced] (immediate)
[2014-09-25T15:40:41+00:00] INFO: package[vim-enhanced] installing vim-enhanced-7.2.411-1.8.el6 from base repository
[2014-09-25T15:41:10+00:00] INFO: cookbook_file[replace_centos6_yum_base_repo] sending install action to package[mlocate] (immediate)
[2014-09-25T15:41:10+00:00] INFO: package[mlocate] installing mlocate-0.22.2-4.el6 from base repository
[2014-09-25T15:41:11+00:00] INFO: package[mlocate] sending run action to execute[/usr/bin/updatedb] (immediate)
[2014-09-25T15:41:16+00:00] INFO: execute[/usr/bin/updatedb] ran successfully
[2014-09-25T15:41:16+00:00] INFO: template[/etc/yum.conf] backed up to /var/chef/backup/etc/yum.conf.chef-20140925154116.238187
[2014-09-25T15:41:16+00:00] INFO: template[/etc/yum.conf] updated file contents /etc/yum.conf
[2014-09-25T15:41:16+00:00] INFO: cookbook_file[create_sinfo] created file /usr/local/bin/sinfo
[2014-09-25T15:41:16+00:00] INFO: cookbook_file[create_sinfo] updated file contents /usr/local/bin/sinfo
[2014-09-25T15:41:16+00:00] INFO: cookbook_file[create_sinfo] owner changed to 0
[2014-09-25T15:41:16+00:00] INFO: cookbook_file[create_sinfo] group changed to 0
[2014-09-25T15:41:16+00:00] INFO: cookbook_file[create_sinfo] mode changed to 555
[2014-09-25T15:41:17+00:00] INFO: link[/etc/localtime] created
[2014-09-25T15:41:17+00:00] INFO: template[/home/vagrant/.pystartup] created file /home/vagrant/.pystartup
[2014-09-25T15:41:17+00:00] INFO: template[/home/vagrant/.pystartup] updated file contents /home/vagrant/.pystartup
[2014-09-25T15:41:17+00:00] INFO: template[/home/vagrant/.pystartup] owner changed to 500
[2014-09-25T15:41:17+00:00] INFO: template[/home/vagrant/.pystartup] group changed to 500
[2014-09-25T15:41:17+00:00] INFO: template[/home/vagrant/.pystartup] mode changed to 755
[2014-09-25T15:41:17+00:00] INFO: ruby_block[add_to_bash_profile] called
[2014-09-25T15:41:17+00:00] INFO: cookbook_file[/var/chef/cache/get-pip.py] created file /var/chef/cache/get-pip.py
[2014-09-25T15:41:20+00:00] INFO: cookbook_file[/var/chef/cache/get-pip.py] updated file contents /var/chef/cache/get-pip.py
[2014-09-25T15:41:20+00:00] INFO: cookbook_file[/var/chef/cache/get-pip.py] mode changed to 644
[2014-09-25T15:41:25+00:00] INFO: execute[install-pip] ran successfully
[2014-09-25T15:41:25+00:00] INFO: Upgrading python_pip[setuptools] version from uninstalled to latest
[2014-09-25T15:41:28+00:00] INFO: Upgrading python_pip[virtualenv] version from uninstalled to latest
[2014-09-25T15:41:30+00:00] INFO: package[subversion] installing subversion-1.6.11-10.el6_5 from updates repository
[2014-09-25T15:41:37+00:00] INFO: template[/etc/yum.repos.d/mariadb.repo] created file /etc/yum.repos.d/mariadb.repo
[2014-09-25T15:41:37+00:00] INFO: template[/etc/yum.repos.d/mariadb.repo] updated file contents /etc/yum.repos.d/mariadb.repo
[2014-09-25T15:41:37+00:00] INFO: template[/etc/yum.repos.d/mariadb.repo] mode changed to 644
[2014-09-25T15:41:37+00:00] INFO: template[/etc/yum.repos.d/mariadb.repo] sending run action to execute[yum-makecache-mariadb] (immediate)
[2014-09-25T15:41:38+00:00] INFO: execute[yum-makecache-mariadb] ran successfully
[2014-09-25T15:41:38+00:00] INFO: template[/etc/yum.repos.d/mariadb.repo] sending create action to ruby_block[yum-cache-reload-mariadb] (immediate)
[2014-09-25T15:41:38+00:00] INFO: ruby_block[yum-cache-reload-mariadb] called
[2014-09-25T15:41:41+00:00] INFO: package[mysql-libs] removed
[2014-09-25T15:41:41+00:00] INFO: package[MariaDB-client] installing MariaDB-client-10.0.13-1.el6 from mariadb repository
[2014-09-25T15:41:57+00:00] INFO: package[MySQL-python] installing MySQL-python-1.2.3-0.3.c1.1.el6 from base repository
[2014-09-25T15:42:02+00:00] INFO: bash[install_zCrowd_management] ran successfully
[2014-09-25T15:42:11+00:00] INFO: bash[venv_install] ran successfully
[2014-09-25T15:42:13+00:00] INFO: bash[pip_install] ran successfully
[2014-09-25T15:42:13+00:00] INFO: ruby_block[add_dshell_to_bash_profile] called
[2014-09-25T15:42:13+00:00] INFO: package[MariaDB-server] installing MariaDB-server-10.0.13-1.el6 from mariadb repository
[2014-09-25T15:43:07+00:00] INFO: directory[/var/run/mysqld] created directory /var/run/mysqld
[2014-09-25T15:43:07+00:00] INFO: directory[/var/run/mysqld] owner changed to 497
[2014-09-25T15:43:07+00:00] INFO: directory[/var/run/mysqld] group changed to 498
[2014-09-25T15:43:07+00:00] INFO: directory[/var/run/mysqld] mode changed to 755
[2014-09-25T15:43:07+00:00] INFO: directory[/var/log/mysql] created directory /var/log/mysql
[2014-09-25T15:43:07+00:00] INFO: directory[/var/log/mysql] owner changed to 497
[2014-09-25T15:43:07+00:00] INFO: directory[/var/log/mysql] group changed to 498
[2014-09-25T15:43:07+00:00] INFO: directory[/var/log/mysql] mode changed to 755
[2014-09-25T15:43:07+00:00] INFO: directory[/etc/mysql/conf.d] created directory /etc/mysql/conf.d
[2014-09-25T15:43:07+00:00] INFO: directory[/etc/mysql/conf.d] owner changed to 497
[2014-09-25T15:43:07+00:00] INFO: directory[/etc/mysql/conf.d] group changed to 498
[2014-09-25T15:43:07+00:00] INFO: directory[/etc/mysql/conf.d] mode changed to 755
[2014-09-25T15:43:08+00:00] INFO: template[initial-my.cnf] backed up to /var/chef/backup/etc/my.cnf.chef-20140925154308.344686
[2014-09-25T15:43:08+00:00] INFO: template[initial-my.cnf] updated file contents /etc/my.cnf
[2014-09-25T15:43:08+00:00] INFO: template[initial-my.cnf] sending start action to service[mysql] (immediate)
[2014-09-25T15:43:09+00:00] INFO: service[mysql] started
[2014-09-25T15:43:09+00:00] INFO: execute[assign-root-password] ran successfully
[2014-09-25T15:43:10+00:00] INFO: template[/etc/mysql_grants.sql] created file /etc/mysql_grants.sql
[2014-09-25T15:43:10+00:00] INFO: template[/etc/mysql_grants.sql] updated file contents /etc/mysql_grants.sql
[2014-09-25T15:43:10+00:00] INFO: template[/etc/mysql_grants.sql] owner changed to 0
[2014-09-25T15:43:10+00:00] INFO: template[/etc/mysql_grants.sql] group changed to 0
[2014-09-25T15:43:10+00:00] INFO: template[/etc/mysql_grants.sql] mode changed to 600
[2014-09-25T15:43:10+00:00] INFO: template[/etc/mysql_grants.sql] sending run action to execute[install-grants] (immediate)
[2014-09-25T15:43:10+00:00] INFO: execute[install-grants] ran successfully
[2014-09-25T15:43:10+00:00] INFO: execute[install-grants] sending restart action to service[mysql] (immediate)
[2014-09-25T15:43:13+00:00] INFO: service[mysql] restarted
[2014-09-25T15:43:13+00:00] INFO: package[mod_wsgi] installing mod_wsgi-3.2-6.el6_5 from updates repository
[2014-09-25T15:43:17+00:00] INFO: package[mod_wsgi] sending run action to execute[generate-module-list] (immediate)

================================================================================
Error executing action `run` on resource 'execute[generate-module-list]'
================================================================================

Errno::ENOENT
-------------
No such file or directory - /usr/local/bin/apache2_module_conf_generate.pl /usr/lib64/httpd /etc/httpd/mods-available

Resource Declaration:
---------------------
# In /var/chef/cache/cookbooks/apache2/recipes/default.rb

 89:   execute 'generate-module-list' do
 90:     command "/usr/local/bin/apache2_module_conf_generate.pl #{node['apache']['lib_dir']} #{node['apache']['dir']}/mods-available"
 91:     action :nothing
 92:   end
 93: 

Compiled Resource:
------------------
# Declared in /var/chef/cache/cookbooks/apache2/recipes/default.rb:89:in `from_file'

execute("generate-module-list") do
  action [:nothing]
  retries 0
  retry_delay 2
  guard_interpreter :default
  command "/usr/local/bin/apache2_module_conf_generate.pl /usr/lib64/httpd /etc/httpd/mods-available"
  backup 5
  returns 0
  cookbook_name "apache2"
  recipe_name "default"
end

[2014-09-25T15:43:17+00:00] INFO: Running queued delayed notifications before re-raising exception
[2014-09-25T15:43:17+00:00] INFO: package[MySQL-python] sending run action to bash[venv_install] (delayed)
[2014-09-25T15:43:26+00:00] INFO: bash[venv_install] ran successfully
[2014-09-25T15:43:26+00:00] INFO: bash[venv_install] not queuing delayed action run on bash[pip_install] (delayed), as it's already been queued
[2014-09-25T15:43:26+00:00] INFO: bash[install_zCrowd_management] sending install action to package[MySQL-python] (delayed)
[2014-09-25T15:43:26+00:00] INFO: bash[venv_install] sending run action to bash[pip_install] (delayed)
[2014-09-25T15:43:29+00:00] INFO: bash[pip_install] ran successfully
[2014-09-25T15:43:29+00:00] ERROR: Running exception handlers
[2014-09-25T15:43:29+00:00] ERROR: Exception handlers complete
[2014-09-25T15:43:29+00:00] FATAL: Stacktrace dumped to /var/chef/cache/chef-stacktrace.out
[2014-09-25T15:43:29+00:00] ERROR: execute[generate-module-list] (apache2::default line 89) had an error: Errno::ENOENT: No such file or directory - /usr/local/bin/apache2_module_conf_generate.pl /usr/lib64/httpd /etc/httpd/mods-available
[2014-09-25T15:43:29+00:00] FATAL: Chef::Exceptions::ChildConvergeError: Chef run process exited unsuccessfully (exit code 1)
==> zsystem: Saved client key to /Users/idbill/PugetWorks/zCrowd/.vagrant/butcher/zsystem-client.pem
Chef never successfully completed! Any errors should be visible in the
output above. Please fix your recipes so that they properly complete.

mysql:
[root@localhost ~]# mysql -D mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 2
Server version: 10.0.13-MariaDB-log MariaDB Server

Copyright (c) 2000, 2014, Oracle, SkySQL Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [mysql]> select Host,User,Password from user;
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
ERROR: Can't connect to the server

unknown [mysql]> select Host,User,Password from user;
No connection. Trying to reconnect...
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
ERROR: Can't connect to the server

unknown [mysql]> select Host,User,Password from user;
No connection. Trying to reconnect...
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
ERROR: Can't connect to the server

unknown [mysql]> Ctrl-C -- exit!
Aborted
[root@localhost ~]# mysql -D mysql
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
[root@localhost ~]# mysql -u root -D mysql
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
[root@localhost ~]# mysql -u root -p -D mysql
Enter password: 
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
[root@localhost ~]#  !#@ARGGG#!@#!

I'm getting really frustrated with this.

How is it acceptable to put a random and unknowable password on the mysql admin account?

80% of the time the process doesn't work and when it does work I'm locked out of mysql. SO no matter what, the system is unusable.

My Conclusions: 1 - The startup fails because it is checking some file that is not removed by 'yum remove mysql-server' 2 - Others don't use this cookbook the way I'm using it

Question: See (conclusion #2), how do others use this?

Bill

bpieck commented 9 years ago

Have you tried, to use a higher presedence level? normal['mariadb']['server_root_password'] = 'root' There was once an issue on set_unless and using default presedence level. Don't know, if you're problem could come from that.

But: You really can use the secure_random instead of setting a hard coded root_password. It's still saved in the node attributes and other nodes can get access to the password via search if you need it in other recipes.

ghost commented 9 years ago

I have a success!

Ok, for a quick reset.. it appears you have to 'yum remove mysql-server' AND 'rm -rf /var/lib/mysql' AND 'rm -rf /etc/my*' to kick mysql-server install to occur.

As for the password, I'm getting the server_root_password from chef (which doesn't appear to change between runs (good thinking on someones part)). Once I have that password, I'm able to do what I need to add other users and databases.

Thank you for bearing with me, Bill