Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -----> Starting Kitchen (v1.3.1)
- D [kitchen::driver::vagrant command] BEGIN (vagrant --version)
- D [kitchen::driver::vagrant command] END (0m0.14s)
- D Berksfile found at /Users/sowen/Devops/cookbooks/ND-influxdb/Berksfile, loading Berkshelf
- D Berkshelf 3.2.3 library loaded
- -----> Converging <default-ubuntu-1404>...
- D Creating Vagrantfile for <default-ubuntu-1404> (/Users/sowen/Devops/cookbooks/ND-influxdb/.kitchen/kitchen-vagrant/default-ubuntu-1404/Vagrantfile)
- D ------------
- D Vagrant.configure("2") do |c|
- D c.vm.box = "opscode_ubuntu-14.04"
- D c.vm.box_url = "https://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-14.04_chef-provisionerless.box"
- D c.vm.hostname = "default-ubuntu-1404.vagrantup.com"
- D c.vm.synced_folder ".", "/vagrant", disabled: true
- D c.vm.provider :virtualbox do |p|
- D end
- D end
- D ------------
- Preparing files for transfer
- D Creating local sandbox in /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc
- Preparing dna.json
- D Creating dna.json from {:run_list=>["recipe[apt::default]", "recipe[influxdb::default]"]}
- Resolving cookbook dependencies with Berkshelf 3.2.3...
- D Using Berksfile from /Users/sowen/Devops/cookbooks/ND-influxdb/Berksfile
- Removing non-cookbook files before transfer
- Preparing solo.rb
- D Creating solo.rb from {:node_name=>"default-ubuntu-1404", :checksum_path=>"/tmp/kitchen/checksums", :file_cache_path=>"/tmp/kitchen/cache", :file_backup_path=>"/tmp/kitchen/backup", :cookbook_path=>["/tmp/kitchen/cookbooks", "/tmp/kitchen/site-cookbooks"], :data_bag_path=>"/tmp/kitchen/data_bags", :environment_path=>"/tmp/kitchen/environments", :node_path=>"/tmp/kitchen/nodes", :role_path=>"/tmp/kitchen/roles", :client_path=>"/tmp/kitchen/clients", :user_path=>"/tmp/kitchen/users", :validation_key=>"/tmp/kitchen/validation.pem", :client_key=>"/tmp/kitchen/client.pem", :chef_server_url=>"http://127.0.0.1:8889", :encrypted_data_bag_secret=>"/tmp/kitchen/encrypted_data_bag_secret"}
- D [SSH] [email protected]:2222<{:user_known_hosts_file=>"/dev/null", :paranoid=>false, :keys_only=>true, :port=>"2222", :keys=>["/Users/sowen/Devops/cookbooks/ND-influxdb/.kitchen/kitchen-vagrant/default-ubuntu-1404/.vagrant/machines/default/virtualbox/private_key"]}> (sh -c '
- # Check whether a command exists - returns 0 if it does, 1 if it does not
- exists() {
- if command -v $1 >/dev/null 2>&1
- then
- return 0
- else
- return 1
- fi
- }
- # do_wget URL FILENAME
- do_wget() {
- echo "trying wget..."
- wget -O "$2" "$1" 2>/tmp/stderr
- # check for bad return status
- test $? -ne 0 && return 1
- # check for 404 or empty file
- grep "ERROR 404" /tmp/stderr 2>&1 >/dev/null
- if test $? -eq 0 || test ! -s "$2"; then
- return 1
- fi
- return 0
- }
- # do_curl URL FILENAME
- do_curl() {
- echo "trying curl..."
- curl -L "$1" > "$2"
- # check for bad return status
- [ $? -ne 0 ] && return 1
- # check for bad output or empty file
- grep "The specified key does not exist." "$2" 2>&1 >/dev/null
- if test $? -eq 0 || test ! -s "$2"; then
- return 1
- fi
- return 0
- }
- # do_fetch URL FILENAME
- do_fetch() {
- echo "trying fetch..."
- fetch -o "$2" "$1" 2>/tmp/stderr
- # check for bad return status
- test $? -ne 0 && return 1
- return 0
- }
- # do_perl URL FILENAME
- do_perl() {
- echo "trying perl..."
- perl -e "use LWP::Simple; getprint($ARGV[0]);" "$1" > "$2"
- # check for bad return status
- test $? -ne 0 && return 1
- # check for bad output or empty file
- # grep "The specified key does not exist." "$2" 2>&1 >/dev/null
- # if test $? -eq 0 || test ! -s "$2"; then
- # unable_to_retrieve_package
- # fi
- return 0
- }
- # do_python URL FILENAME
- do_python() {
- echo "trying python..."
- python -c "import sys,urllib2 ; sys.stdout.write(urllib2.urlopen(sys.argv[1]).read())" "$1" > "$2"
- # check for bad return status
- test $? -ne 0 && return 1
- # check for bad output or empty file
- #grep "The specified key does not exist." "$2" 2>&1 >/dev/null
- #if test $? -eq 0 || test ! -s "$2"; then
- # unable_to_retrieve_package
- #fi
- return 0
- }
- # do_download URL FILENAME
- do_download() {
- PATH=/opt/local/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
- export PATH
- echo "downloading $1"
- echo " to file $2"
- # we try all of these until we get success.
- # perl, in particular may be present but LWP::Simple may not be installed
- if exists wget; then
- do_wget $1 $2 && return 0
- fi
- if exists curl; then
- do_curl $1 $2 && return 0
- fi
- if exists fetch; then
- do_fetch $1 $2 && return 0
- fi
- if exists perl; then
- do_perl $1 $2 && return 0
- fi
- if exists python; then
- do_python $1 $2 && return 0
- fi
- echo ">>>>>> wget, curl, fetch, perl or python not found on this instance."
- return 16
- }
- # @param $1 the omnibus root directory
- # @param $2 the requested version of omnibus package
- # @return 0 if omnibus needs to be installed, non-zero otherwise
- should_update_chef() {
- if test ! -d "$1" ; then return 0
- elif test "$2" = "true" ; then return 1
- elif test "$2" = "latest" ; then return 0
- fi
- local version="`$1/bin/chef-solo -v | cut -d " " -f 2`"
- if echo "$version" | grep "^$2" 2>&1 >/dev/null; then
- return 1
- else
- return 0
- fi
- }
- if should_update_chef "/opt/chef" "11.8.2" ; then
- echo "-----> Installing Chef Omnibus (11.8.2)"
- do_download https://www.chef.io/chef/install.sh /tmp/install.sh
- sudo -E sh /tmp/install.sh -v 11.8.2
- else
- echo "-----> Chef Omnibus installation detected (11.8.2)"
- fi
- ')
- D [SSH] opening connection to [email protected]:2222<{:user_known_hosts_file=>"/dev/null", :paranoid=>false, :keys_only=>true, :port=>"2222", :keys=>["/Users/sowen/Devops/cookbooks/ND-influxdb/.kitchen/kitchen-vagrant/default-ubuntu-1404/.vagrant/machines/default/virtualbox/private_key"]}>
- -----> Chef Omnibus installation detected (11.8.2)
- D [SSH] [email protected]:2222<{:user_known_hosts_file=>"/dev/null", :paranoid=>false, :keys_only=>true, :port=>"2222", :keys=>["/Users/sowen/Devops/cookbooks/ND-influxdb/.kitchen/kitchen-vagrant/default-ubuntu-1404/.vagrant/machines/default/virtualbox/private_key"], :user=>"vagrant"}> (sh -c '
- sudo -E rm -rf /tmp/kitchen/cookbooks /tmp/kitchen/data /tmp/kitchen/data_bags /tmp/kitchen/environments /tmp/kitchen/roles /tmp/kitchen/clients
- mkdir -p /tmp/kitchen
- ')
- Transferring files to <default-ubuntu-1404>
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/attributes/default.rb (1036 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/files/default/apt-proxy-v2.conf (1118 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/libraries/helpers.rb (1334 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/libraries/matchers.rb (553 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/libraries/network.rb (923 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/metadata.json (11766 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/providers/preference.rb (1781 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/providers/repository.rb (4467 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/README.md (9991 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/recipes/cacher-client.rb (2668 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/recipes/cacher-ng.rb (1109 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/recipes/default.rb (2543 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/resources/preference.rb (994 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/resources/repository.rb (1673 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/templates/debian-6.0/acng.conf.erb (7877 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/templates/default/01proxy.erb (190 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/templates/default/acng.conf.erb (13659 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/templates/ubuntu-10.04/acng.conf.erb (13164 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/attributes/default.rb (1043 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/files/default/handlers/README (67 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/libraries/matchers.rb (992 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/metadata.json (4708 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/providers/default.rb (3192 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/README.md (4089 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/recipes/default.rb (1126 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/recipes/json_file.rb (950 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/resources/default.rb (1208 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/attributes/default.rb (2881 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/libraries/default.rb (2007 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/metadata.json (566 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/providers/admin.rb (1654 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/providers/database.rb (1120 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/providers/default.rb (1889 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/providers/user.rb (2634 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/README.md (2006 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/recipes/cli_client.rb (831 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/recipes/client.rb (897 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/recipes/default.rb (1053 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/recipes/handler.rb (1361 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/recipes/ruby_client.rb (886 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/resources/admin.rb (902 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/resources/database.rb (849 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/resources/default.rb (1010 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/resources/user.rb (1026 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/ND-influxdb/attributes/default.rb (191 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/ND-influxdb/metadata.json (647 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/ND-influxdb/README.md (623 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/ND-influxdb/recipes/default.rb (788 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/dna.json (65 bytes)
- D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/solo.rb (619 bytes)
- D Transfer complete
- D [SSH] [email protected]:2222<{:user_known_hosts_file=>"/dev/null", :paranoid=>false, :keys_only=>true, :port=>"2222", :keys=>["/Users/sowen/Devops/cookbooks/ND-influxdb/.kitchen/kitchen-vagrant/default-ubuntu-1404/.vagrant/machines/default/virtualbox/private_key"], :user=>"vagrant"}> (sh -c '
- sudo -E /opt/chef/bin/chef-solo --config /tmp/kitchen/solo.rb --log_level debug --force-formatter --no-color --json-attributes /tmp/kitchen/dna.json
- ')
- [2015-04-29T21:35:30+00:00] INFO: Forking chef instance to converge...
- [2015-04-29T21:35:30+00:00] DEBUG: Fork successful. Waiting for new chef pid: 2400
- [2015-04-29T21:35:30+00:00] DEBUG: Forked instance now converging
- Starting Chef Client, version 11.8.2
- [2015-04-29T21:35:30+00:00] INFO: *** Chef 11.8.2 ***
- [2015-04-29T21:35:30+00:00] INFO: Chef-client pid: 2400
- [2015-04-29T21:35:30+00:00] DEBUG: Building node object for default-ubuntu-1404
- [2015-04-29T21:35:30+00:00] DEBUG: Extracting run list from JSON attributes provided on command line
- [2015-04-29T21:35:30+00:00] INFO: Setting the run_list to ["recipe[apt::default]", "recipe[influxdb::default]"] from JSON
- [2015-04-29T21:35:30+00:00] DEBUG: Applying attributes from json file
- [2015-04-29T21:35:30+00:00] DEBUG: Platform is ubuntu version 14.04
- [2015-04-29T21:35:30+00:00] INFO: Run List is [recipe[apt::default], recipe[influxdb::default]]
- [2015-04-29T21:35:30+00:00] INFO: Run List expands to [apt::default, influxdb::default]
- [2015-04-29T21:35:30+00:00] INFO: Starting Chef Run for default-ubuntu-1404
- [2015-04-29T21:35:30+00:00] INFO: Running start handlers
- [2015-04-29T21:35:30+00:00] INFO: Start handlers complete.
- [2015-04-29T21:35:30+00:00] DEBUG: No chefignore file found at /tmp/kitchen/cookbooks/chefignore no files will be ignored
- Compiling Cookbooks...
- [2015-04-29T21:35:30+00:00] DEBUG: Cookbooks to compile: [:apt, :chef_handler, :influxdb]
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook apt's library file: /tmp/kitchen/cookbooks/apt/libraries/helpers.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook apt's library file: /tmp/kitchen/cookbooks/apt/libraries/matchers.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook apt's library file: /tmp/kitchen/cookbooks/apt/libraries/network.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook chef_handler's library file: /tmp/kitchen/cookbooks/chef_handler/libraries/matchers.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's library file: /tmp/kitchen/cookbooks/influxdb/libraries/default.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Node default-ubuntu-1404 loading cookbook apt's attribute file /tmp/kitchen/cookbooks/apt/attributes/default.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loading Attribute apt::default
- [2015-04-29T21:35:30+00:00] DEBUG: Node default-ubuntu-1404 loading cookbook chef_handler's attribute file /tmp/kitchen/cookbooks/chef_handler/attributes/default.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loading Attribute chef_handler::default
- [2015-04-29T21:35:30+00:00] DEBUG: Node default-ubuntu-1404 loading cookbook influxdb's attribute file /tmp/kitchen/cookbooks/influxdb/attributes/default.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loading Attribute influxdb::default
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook apt's providers from /tmp/kitchen/cookbooks/apt/providers/preference.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loaded contents of /tmp/kitchen/cookbooks/apt/providers/preference.rb into a provider named apt_preference defined in Chef::Provider::AptPreference
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook apt's providers from /tmp/kitchen/cookbooks/apt/providers/repository.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loaded contents of /tmp/kitchen/cookbooks/apt/providers/repository.rb into a provider named apt_repository defined in Chef::Provider::AptRepository
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook apt's resources from /tmp/kitchen/cookbooks/apt/resources/preference.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loaded contents of /tmp/kitchen/cookbooks/apt/resources/preference.rb into a resource named apt_preference defined in Chef::Resource::AptPreference
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook apt's resources from /tmp/kitchen/cookbooks/apt/resources/repository.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loaded contents of /tmp/kitchen/cookbooks/apt/resources/repository.rb into a resource named apt_repository defined in Chef::Resource::AptRepository
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook chef_handler's providers from /tmp/kitchen/cookbooks/chef_handler/providers/default.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loaded contents of /tmp/kitchen/cookbooks/chef_handler/providers/default.rb into a provider named chef_handler defined in Chef::Provider::ChefHandler
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook chef_handler's resources from /tmp/kitchen/cookbooks/chef_handler/resources/default.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loaded contents of /tmp/kitchen/cookbooks/chef_handler/resources/default.rb into a resource named chef_handler defined in Chef::Resource::ChefHandler
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's providers from /tmp/kitchen/cookbooks/influxdb/providers/admin.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loaded contents of /tmp/kitchen/cookbooks/influxdb/providers/admin.rb into a provider named influxdb_admin defined in Chef::Provider::InfluxdbAdmin
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's providers from /tmp/kitchen/cookbooks/influxdb/providers/database.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loaded contents of /tmp/kitchen/cookbooks/influxdb/providers/database.rb into a provider named influxdb_database defined in Chef::Provider::InfluxdbDatabase
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's providers from /tmp/kitchen/cookbooks/influxdb/providers/default.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loaded contents of /tmp/kitchen/cookbooks/influxdb/providers/default.rb into a provider named influxdb defined in Chef::Provider::Influxdb
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's providers from /tmp/kitchen/cookbooks/influxdb/providers/user.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loaded contents of /tmp/kitchen/cookbooks/influxdb/providers/user.rb into a provider named influxdb_user defined in Chef::Provider::InfluxdbUser
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's resources from /tmp/kitchen/cookbooks/influxdb/resources/admin.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loaded contents of /tmp/kitchen/cookbooks/influxdb/resources/admin.rb into a resource named influxdb_admin defined in Chef::Resource::InfluxdbAdmin
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's resources from /tmp/kitchen/cookbooks/influxdb/resources/database.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loaded contents of /tmp/kitchen/cookbooks/influxdb/resources/database.rb into a resource named influxdb_database defined in Chef::Resource::InfluxdbDatabase
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's resources from /tmp/kitchen/cookbooks/influxdb/resources/default.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loaded contents of /tmp/kitchen/cookbooks/influxdb/resources/default.rb into a resource named influxdb defined in Chef::Resource::Influxdb
- [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's resources from /tmp/kitchen/cookbooks/influxdb/resources/user.rb
- [2015-04-29T21:35:30+00:00] DEBUG: Loaded contents of /tmp/kitchen/cookbooks/influxdb/resources/user.rb into a resource named influxdb_user defined in Chef::Resource::InfluxdbUser
- [2015-04-29T21:35:30+00:00] DEBUG: Loading Recipe apt::default via include_recipe
- [2015-04-29T21:35:30+00:00] DEBUG: Found recipe default in cookbook apt
- [2015-04-29T21:35:30+00:00] DEBUG: Loading Recipe influxdb::default via include_recipe
- [2015-04-29T21:35:30+00:00] DEBUG: Found recipe default in cookbook influxdb
- [2015-04-29T21:35:30+00:00] DEBUG: Loading from cookbook_path: /tmp/kitchen/cookbooks, /tmp/kitchen/site-cookbooks
- Converging 9 resources
- [2015-04-29T21:35:30+00:00] DEBUG: Converging node default-ubuntu-1404
- Recipe: apt::default
- * execute[apt-get-update] action run[2015-04-29T21:35:30+00:00] INFO: Processing execute[apt-get-update] action run (apt::default line 29)
- (skipped due to not_if)
- [2015-04-29T21:35:30+00:00] DEBUG: Skipping execute[apt-get-update] due to not_if ruby block
- * execute[apt-get update] action nothing[2015-04-29T21:35:30+00:00] INFO: Processing execute[apt-get update] action nothing (apt::default line 37)
- (skipped due to action :nothing)
- [2015-04-29T21:35:30+00:00] DEBUG: Skipping execute[apt-get update] due to action :nothing
- * execute[apt-get autoremove] action nothing[2015-04-29T21:35:30+00:00] INFO: Processing execute[apt-get autoremove] action nothing (apt::default line 45)
- (skipped due to action :nothing)
- [2015-04-29T21:35:30+00:00] DEBUG: Skipping execute[apt-get autoremove] due to action :nothing
- * execute[apt-get autoclean] action nothing[2015-04-29T21:35:30+00:00] INFO: Processing execute[apt-get autoclean] action nothing (apt::default line 52)
- (skipped due to action :nothing)
- [2015-04-29T21:35:30+00:00] DEBUG: Skipping execute[apt-get autoclean] due to action :nothing
- * package[update-notifier-common] action install[2015-04-29T21:35:30+00:00] INFO: Processing package[update-notifier-common] action install (apt::default line 59)
- [2015-04-29T21:35:30+00:00] DEBUG: Platform ubuntu version 14.04 found
- [2015-04-29T21:35:30+00:00] DEBUG: package[update-notifier-common] checking package status for update-notifier-common
- update-notifier-common:
- Installed: 0.154.1ubuntu1
- Candidate: 0.154.1ubuntu1
- Version table:
- *** 0.154.1ubuntu1 0
- 500 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 Packages
- 100 /var/lib/dpkg/status
- 0.154.1 0
- 500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
- [2015-04-29T21:35:30+00:00] DEBUG: package[update-notifier-common] current version is 0.154.1ubuntu1
- [2015-04-29T21:35:30+00:00] DEBUG: package[update-notifier-common] candidate version is 0.154.1ubuntu1
- [2015-04-29T21:35:30+00:00] DEBUG: package[update-notifier-common] is already installed - nothing to do
- (up to date)
- * execute[apt-get-update-periodic] action run[2015-04-29T21:35:30+00:00] INFO: Processing execute[apt-get-update-periodic] action run (apt::default line 64)
- (skipped due to only_if)
- [2015-04-29T21:35:30+00:00] DEBUG: Skipping execute[apt-get-update-periodic] due to only_if ruby block
- * directory[/var/cache/local] action create[2015-04-29T21:35:30+00:00] INFO: Processing directory[/var/cache/local] action create (apt::default line 75)
- [2015-04-29T21:35:30+00:00] DEBUG: found target_mode == current_mode, not updating mode
- [2015-04-29T21:35:30+00:00] DEBUG: found target_uid == current_uid, not updating owner
- [2015-04-29T21:35:30+00:00] DEBUG: found target_gid == current_gid, not updating group
- (up to date)
- * directory[/var/cache/local/preseeding] action create[2015-04-29T21:35:30+00:00] INFO: Processing directory[/var/cache/local/preseeding] action create (apt::default line 75)
- [2015-04-29T21:35:30+00:00] DEBUG: found target_mode == current_mode, not updating mode
- [2015-04-29T21:35:30+00:00] DEBUG: found target_uid == current_uid, not updating owner
- [2015-04-29T21:35:30+00:00] DEBUG: found target_gid == current_gid, not updating group
- (up to date)
- Recipe: influxdb::default
- * influxdb[main] action create[2015-04-29T21:35:30+00:00] INFO: Processing influxdb[main] action create (influxdb::default line 26)
- [2015-04-29T21:35:30+00:00] DEBUG: Platform ubuntu version 14.04 found
- Recipe: <Dynamically Defined Resource>
- * remote_file[/tmp/kitchen/cache/influxdb.deb] action create[2015-04-29T21:35:30+00:00] INFO: Processing remote_file[/tmp/kitchen/cache/influxdb.deb] action create (dynamically defined)
- [2015-04-29T21:35:30+00:00] DEBUG: remote_file[/tmp/kitchen/cache/influxdb.deb] checking for changes
- [2015-04-29T21:35:30+00:00] DEBUG: Cache control headers: {"if-modified-since"=>"Wed, 29 Apr 2015 21:23:32 GMT", "if-none-match"=>"\"ae90f6ec78b044411e466b5ebe297871-3\""}
- [2015-04-29T21:35:30+00:00] DEBUG: Initiating GET to http://s3.amazonaws.com/influxdb/influxdb_latest_amd64.deb
- [2015-04-29T21:35:30+00:00] DEBUG: ---- HTTP Request Header Data: ----
- [2015-04-29T21:35:30+00:00] DEBUG: if-modified-since: Wed, 29 Apr 2015 21:23:32 GMT
- [2015-04-29T21:35:30+00:00] DEBUG: if-none-match: "ae90f6ec78b044411e466b5ebe297871-3"
- [2015-04-29T21:35:30+00:00] DEBUG: Accept-Encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3
- [2015-04-29T21:35:35+00:00] DEBUG: ---- HTTP Status and Header Data: ----
- [2015-04-29T21:35:35+00:00] DEBUG: HTTP 1.1 304 Not Modified
- [2015-04-29T21:35:35+00:00] DEBUG: x-amz-id-2: 0Jr0IaZmiRG0EELcqYT3NBq3LRTbb/HR24uFRwLgXGv/EstJvp+n98dJH1MegOnV
- [2015-04-29T21:35:35+00:00] DEBUG: x-amz-request-id: D2E18EFC84CF40C5
- [2015-04-29T21:35:35+00:00] DEBUG: date: Wed, 29 Apr 2015 21:35:36 GMT
- [2015-04-29T21:35:35+00:00] DEBUG: last-modified: Mon, 29 Dec 2014 06:20:32 GMT
- [2015-04-29T21:35:35+00:00] DEBUG: etag: "ae90f6ec78b044411e466b5ebe297871-3"
- [2015-04-29T21:35:35+00:00] DEBUG: server: AmazonS3
- [2015-04-29T21:35:35+00:00] DEBUG: ---- End HTTP Status/Header Data ----
- [2015-04-29T21:35:35+00:00] DEBUG: found target_mode == nil, so no mode was specified on resource, not managing mode
- [2015-04-29T21:35:35+00:00] DEBUG: found target_uid == nil, so no owner was specified on resource, not managing owner
- [2015-04-29T21:35:35+00:00] DEBUG: found target_gid == nil, so no group was specified on resource, not managing group
- (up to date)
- * package[/tmp/kitchen/cache/influxdb.deb] action install[2015-04-29T21:35:35+00:00] INFO: Processing package[/tmp/kitchen/cache/influxdb.deb] action install (dynamically defined)
- [2015-04-29T21:35:35+00:00] DEBUG: No package source specified, but /tmp/kitchen/cache/influxdb.deb exists on the filesystem, copying to package source
- [2015-04-29T21:35:35+00:00] DEBUG: package[/tmp/kitchen/cache/influxdb.deb] checking dpkg status
- [2015-04-29T21:35:35+00:00] DEBUG: package[/tmp/kitchen/cache/influxdb.deb] checking install state
- [2015-04-29T21:35:35+00:00] DEBUG: package[/tmp/kitchen/cache/influxdb.deb] current version is 0.8.8
- [2015-04-29T21:35:35+00:00] DEBUG: package[/tmp/kitchen/cache/influxdb.deb] is already installed - nothing to do
- (up to date)
- * service[influxdb] action enable[2015-04-29T21:35:35+00:00] INFO: Processing service[influxdb] action enable (dynamically defined)
- [2015-04-29T21:35:35+00:00] DEBUG: Platform ubuntu version 14.04 found
- [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] falling back to process table inspection
- [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] attempting to match 'influxdb' (/influxdb/) against process list
- UID PID PPID C STIME TTY TIME CMD
- root 1 0 0 21:21 ? 00:00:00 /sbin/init
- root 2 0 0 21:21 ? 00:00:00 [kthreadd]
- root 3 2 0 21:21 ? 00:00:00 [ksoftirqd/0]
- root 4 2 0 21:21 ? 00:00:00 [kworker/0:0]
- root 5 2 0 21:21 ? 00:00:00 [kworker/0:0H]
- root 6 2 0 21:21 ? 00:00:00 [kworker/u2:0]
- root 7 2 0 21:21 ? 00:00:00 [rcu_sched]
- root 8 2 0 21:21 ? 00:00:00 [rcuos/0]
- root 9 2 0 21:21 ? 00:00:00 [rcu_bh]
- root 10 2 0 21:21 ? 00:00:00 [rcuob/0]
- root 11 2 0 21:21 ? 00:00:00 [migration/0]
- root 12 2 0 21:21 ? 00:00:00 [watchdog/0]
- root 13 2 0 21:21 ? 00:00:00 [khelper]
- root 14 2 0 21:21 ? 00:00:00 [kdevtmpfs]
- root 15 2 0 21:21 ? 00:00:00 [netns]
- root 16 2 0 21:21 ? 00:00:00 [writeback]
- root 17 2 0 21:21 ? 00:00:00 [kintegrityd]
- root 18 2 0 21:21 ? 00:00:00 [bioset]
- root 19 2 0 21:21 ? 00:00:00 [kworker/u3:0]
- root 20 2 0 21:21 ? 00:00:00 [kblockd]
- root 21 2 0 21:21 ? 00:00:00 [ata_sff]
- root 22 2 0 21:21 ? 00:00:00 [khubd]
- root 23 2 0 21:21 ? 00:00:00 [md]
- root 24 2 0 21:21 ? 00:00:00 [devfreq_wq]
- root 25 2 0 21:21 ? 00:00:00 [kworker/0:1]
- root 26 2 0 21:21 ? 00:00:00 [khungtaskd]
- root 27 2 0 21:21 ? 00:00:00 [kswapd0]
- root 28 2 0 21:21 ? 00:00:00 [ksmd]
- root 29 2 0 21:21 ? 00:00:00 [fsnotify_mark]
- root 30 2 0 21:21 ? 00:00:00 [ecryptfs-kthrea]
- root 31 2 0 21:21 ? 00:00:00 [crypto]
- root 43 2 0 21:21 ? 00:00:00 [kthrotld]
- root 45 2 0 21:21 ? 00:00:00 [scsi_eh_0]
- root 46 2 0 21:21 ? 00:00:00 [scsi_eh_1]
- root 67 2 0 21:21 ? 00:00:00 [deferwq]
- root 68 2 0 21:21 ? 00:00:00 [charger_manager]
- root 69 2 0 21:21 ? 00:00:00 [kworker/u2:4]
- root 111 2 0 21:21 ? 00:00:00 [kpsmoused]
- root 117 2 0 21:21 ? 00:00:00 [kdmflush]
- root 118 2 0 21:21 ? 00:00:00 [bioset]
- root 120 2 0 21:21 ? 00:00:00 [kdmflush]
- root 123 2 0 21:21 ? 00:00:00 [bioset]
- root 175 2 0 21:21 ? 00:00:00 [jbd2/dm-0-8]
- root 176 2 0 21:21 ? 00:00:00 [ext4-rsv-conver]
- root 303 1 0 21:21 ? 00:00:00 upstart-udev-bridge --daemon
- root 310 1 0 21:21 ? 00:00:00 /lib/systemd/systemd-udevd --daemon
- root 316 2 0 21:21 ? 00:00:00 [kworker/u3:1]
- root 367 2 0 21:21 ? 00:00:00 [ext4-rsv-conver]
- root 395 2 0 21:21 ? 00:00:00 [rpciod]
- root 401 2 0 21:21 ? 00:00:00 [nfsiod]
- root 406 2 0 21:21 ? 00:00:00 [iprt]
- message+ 408 1 0 21:21 ? 00:00:00 dbus-daemon --system --fork
- root 433 1 0 21:21 ? 00:00:00 /lib/systemd/systemd-logind
- syslog 445 1 0 21:21 ? 00:00:00 rsyslogd
- root 466 1 0 21:21 ? 00:00:00 rpc.idmapd
- root 551 1 0 21:21 ? 00:00:00 rpcbind
- statd 568 1 0 21:21 ? 00:00:00 rpc.statd -L
- root 575 1 0 21:21 ? 00:00:00 upstart-file-bridge --daemon
- root 578 1 0 21:21 ? 00:00:00 upstart-socket-bridge --daemon
- root 815 1 0 21:21 tty4 00:00:00 /sbin/getty -8 38400 tty4
- root 817 1 0 21:21 tty5 00:00:00 /sbin/getty -8 38400 tty5
- root 820 1 0 21:21 tty2 00:00:00 /sbin/getty -8 38400 tty2
- root 821 1 0 21:21 tty3 00:00:00 /sbin/getty -8 38400 tty3
- root 823 1 0 21:21 tty6 00:00:00 /sbin/getty -8 38400 tty6
- root 903 1 0 21:22 ? 00:00:00 /usr/sbin/VBoxService
- root 933 1 0 21:22 tty1 00:00:00 /sbin/getty -8 38400 tty1
- root 950 2 0 21:22 ? 00:00:00 [kauditd]
- root 1235 1 0 21:22 ? 00:00:00 dhclient -1 -v -pf /run/dhclient.eth0.pid -lf /var/lib/dhcp/dhclient.eth0.leases eth0
- root 1290 1 0 21:22 ? 00:00:00 /usr/sbin/sshd -D
- influxdb 2107 1 0 21:33 ? 00:00:00 /usr/bin/influxdb -pidfile /opt/influxdb/shared/influxdb.pid -config /opt/influxdb/shared/config.toml
- root 2338 1290 0 21:35 ? 00:00:00 sshd: vagrant [priv]
- vagrant 2374 2338 1 21:35 ? 00:00:00 sshd: vagrant@pts/0
- vagrant 2393 2374 0 21:35 pts/0 00:00:00 sh -c sudo -E /opt/chef/bin/chef-solo --config /tmp/kitchen/solo.rb --log_level debug --force-formatter --no-color --json-attributes /tmp/kitchen/dna.json
- root 2394 2393 0 21:35 pts/0 00:00:00 sudo -E /opt/chef/bin/chef-solo --config /tmp/kitchen/solo.rb --log_level debug --force-formatter --no-color --json-attributes /tmp/kitchen/dna.json
- root 2395 2394 9 21:35 pts/0 00:00:00 /opt/chef/embedded/bin/ruby /opt/chef/bin/chef-solo --config /tmp/kitchen/solo.rb --log_level debug --force-formatter --no-color --json-attributes /tmp/kitchen/dna.json
- root 2400 2395 3 21:35 pts/0 00:00:00 chef-solo worker: ppid=2395;start=21:35:30;
- root 2534 2400 0 21:35 pts/0 00:00:00 ps -ef
- [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] running: true
- [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] runlevel 0, action stop, priority 20
- [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] runlevel 1, action stop, priority 20
- [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] runlevel 2, action start, priority 20
- [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] runlevel 3, action start, priority 20
- [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] runlevel 4, action start, priority 20
- [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] runlevel 5, action start, priority 20
- [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] runlevel 6, action stop, priority 20
- [2015-04-29T21:35:35+00:00] DEBUG: Executing /usr/sbin/update-rc.d -f influxdb remove
- [2015-04-29T21:35:35+00:00] DEBUG: ---- Begin output of /usr/sbin/update-rc.d -f influxdb remove ----
- [2015-04-29T21:35:35+00:00] DEBUG: STDOUT: Removing any system startup links for /etc/init.d/influxdb ...
- /etc/rc0.d/K20influxdb
- /etc/rc1.d/K20influxdb
- /etc/rc2.d/S20influxdb
- /etc/rc3.d/S20influxdb
- /etc/rc4.d/S20influxdb
- /etc/rc5.d/S20influxdb
- /etc/rc6.d/K20influxdb
- [2015-04-29T21:35:35+00:00] DEBUG: STDERR:
- [2015-04-29T21:35:35+00:00] DEBUG: ---- End output of /usr/sbin/update-rc.d -f influxdb remove ----
- [2015-04-29T21:35:35+00:00] DEBUG: Ran /usr/sbin/update-rc.d -f influxdb remove returned 0
- [2015-04-29T21:35:35+00:00] DEBUG: Executing /usr/sbin/update-rc.d influxdb defaults
- [2015-04-29T21:35:35+00:00] DEBUG: ---- Begin output of /usr/sbin/update-rc.d influxdb defaults ----
- [2015-04-29T21:35:35+00:00] DEBUG: STDOUT: Adding system startup for /etc/init.d/influxdb ...
- /etc/rc0.d/K20influxdb -> ../init.d/influxdb
- /etc/rc1.d/K20influxdb -> ../init.d/influxdb
- /etc/rc6.d/K20influxdb -> ../init.d/influxdb
- /etc/rc2.d/S20influxdb -> ../init.d/influxdb
- /etc/rc3.d/S20influxdb -> ../init.d/influxdb
- /etc/rc4.d/S20influxdb -> ../init.d/influxdb
- /etc/rc5.d/S20influxdb -> ../init.d/influxdb
- [2015-04-29T21:35:35+00:00] DEBUG: STDERR:
- [2015-04-29T21:35:35+00:00] DEBUG: ---- End output of /usr/sbin/update-rc.d influxdb defaults ----
- [2015-04-29T21:35:35+00:00] DEBUG: Ran /usr/sbin/update-rc.d influxdb defaults returned 0
- [2015-04-29T21:35:35+00:00] INFO: service[influxdb] enabled
- - enable service service[influxdb]
- * chef_gem[toml] action install[2015-04-29T21:35:35+00:00] INFO: Processing chef_gem[toml] action install (dynamically defined)
- [2015-04-29T21:35:35+00:00] DEBUG: chef_gem[toml] detected omnibus installation in /opt/chef/embedded/bin
- [2015-04-29T21:35:35+00:00] DEBUG: chef_gem[toml] using gem from running ruby environment
- [2015-04-29T21:35:35+00:00] DEBUG: chef_gem[toml] found installed gem toml version 0.1.2 matching toml (>= 0)
- [2015-04-29T21:35:35+00:00] DEBUG: chef_gem[toml] is already installed - nothing to do
- (up to date)
- * file[/opt/influxdb/shared/config.toml] action create[2015-04-29T21:35:35+00:00] INFO: Processing file[/opt/influxdb/shared/config.toml] action create (dynamically defined)
- [2015-04-29T21:35:35+00:00] DEBUG: found target_mode == current_mode, not updating mode
- [2015-04-29T21:35:35+00:00] DEBUG: found target_uid == current_uid, not updating owner
- [2015-04-29T21:35:35+00:00] DEBUG: found target_gid == nil, so no group was specified on resource, not managing group
- (up to date)
- * file[/opt/influxdb/shared/log.txt] action touch[2015-04-29T21:35:35+00:00] INFO: Processing file[/opt/influxdb/shared/log.txt] action touch (dynamically defined)
- [2015-04-29T21:35:35+00:00] DEBUG: found target_mode == nil, so no mode was specified on resource, not managing mode
- [2015-04-29T21:35:35+00:00] DEBUG: found target_uid == current_uid, not updating owner
- [2015-04-29T21:35:35+00:00] DEBUG: found target_gid == current_gid, not updating group
- [2015-04-29T21:35:35+00:00] INFO: file[/opt/influxdb/shared/log.txt] updated atime and mtime to 2015-04-29 21:35:35 +0000
- - update utime on file /opt/influxdb/shared/log.txt
- (up to date)
- [2015-04-29T21:35:35+00:00] INFO: Chef Run complete in 5.471235673 seconds
- [2015-04-29T21:35:35+00:00] INFO: Running report handlers
- [2015-04-29T21:35:35+00:00] INFO: Report handlers complete
- Chef Client finished, 2 resources updated
- [2015-04-29T21:35:35+00:00] DEBUG: Forked instance successfully reaped (pid: 2400)
- [2015-04-29T21:35:35+00:00] DEBUG: Exiting
- D [SSH] closing connection to [email protected]:2222<{:user_known_hosts_file=>"/dev/null", :paranoid=>false, :keys_only=>true, :port=>"2222", :keys=>["/Users/sowen/Devops/cookbooks/ND-influxdb/.kitchen/kitchen-vagrant/default-ubuntu-1404/.vagrant/machines/default/virtualbox/private_key"], :user=>"vagrant"}>
- D Cleaning up local sandbox in /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc
- Finished converging <default-ubuntu-1404> (0m7.36s).
- -----> Kitchen is finished. (0m7.81s)
Advertisement
Add Comment
Please, Sign In to add comment