spuder

chef influx wont start

Apr 29th, 2015
363
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 41.64 KB | None | 0 0
  1. -----> Starting Kitchen (v1.3.1)
  2. D [kitchen::driver::vagrant command] BEGIN (vagrant --version)
  3. D [kitchen::driver::vagrant command] END (0m0.14s)
  4. D Berksfile found at /Users/sowen/Devops/cookbooks/ND-influxdb/Berksfile, loading Berkshelf
  5. D Berkshelf 3.2.3 library loaded
  6. -----> Converging <default-ubuntu-1404>...
  7. D Creating Vagrantfile for <default-ubuntu-1404> (/Users/sowen/Devops/cookbooks/ND-influxdb/.kitchen/kitchen-vagrant/default-ubuntu-1404/Vagrantfile)
  8. D ------------
  9. D Vagrant.configure("2") do |c|
  10. D c.vm.box = "opscode_ubuntu-14.04"
  11. D c.vm.box_url = "https://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-14.04_chef-provisionerless.box"
  12. D c.vm.hostname = "default-ubuntu-1404.vagrantup.com"
  13. D c.vm.synced_folder ".", "/vagrant", disabled: true
  14. D c.vm.provider :virtualbox do |p|
  15. D end
  16. D end
  17. D ------------
  18. Preparing files for transfer
  19. D Creating local sandbox in /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc
  20. Preparing dna.json
  21. D Creating dna.json from {:run_list=>["recipe[apt::default]", "recipe[influxdb::default]"]}
  22. Resolving cookbook dependencies with Berkshelf 3.2.3...
  23. D Using Berksfile from /Users/sowen/Devops/cookbooks/ND-influxdb/Berksfile
  24. Removing non-cookbook files before transfer
  25. Preparing solo.rb
  26. 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"}
  27. 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 '
  28. # Check whether a command exists - returns 0 if it does, 1 if it does not
  29. exists() {
  30. if command -v $1 >/dev/null 2>&1
  31. then
  32. return 0
  33. else
  34. return 1
  35. fi
  36. }
  37.  
  38. # do_wget URL FILENAME
  39. do_wget() {
  40. echo "trying wget..."
  41. wget -O "$2" "$1" 2>/tmp/stderr
  42. # check for bad return status
  43. test $? -ne 0 && return 1
  44. # check for 404 or empty file
  45. grep "ERROR 404" /tmp/stderr 2>&1 >/dev/null
  46. if test $? -eq 0 || test ! -s "$2"; then
  47. return 1
  48. fi
  49. return 0
  50. }
  51.  
  52. # do_curl URL FILENAME
  53. do_curl() {
  54. echo "trying curl..."
  55. curl -L "$1" > "$2"
  56. # check for bad return status
  57. [ $? -ne 0 ] && return 1
  58. # check for bad output or empty file
  59. grep "The specified key does not exist." "$2" 2>&1 >/dev/null
  60. if test $? -eq 0 || test ! -s "$2"; then
  61. return 1
  62. fi
  63. return 0
  64. }
  65.  
  66. # do_fetch URL FILENAME
  67. do_fetch() {
  68. echo "trying fetch..."
  69. fetch -o "$2" "$1" 2>/tmp/stderr
  70. # check for bad return status
  71. test $? -ne 0 && return 1
  72. return 0
  73. }
  74.  
  75. # do_perl URL FILENAME
  76. do_perl() {
  77. echo "trying perl..."
  78. perl -e "use LWP::Simple; getprint($ARGV[0]);" "$1" > "$2"
  79. # check for bad return status
  80. test $? -ne 0 && return 1
  81. # check for bad output or empty file
  82. # grep "The specified key does not exist." "$2" 2>&1 >/dev/null
  83. # if test $? -eq 0 || test ! -s "$2"; then
  84. # unable_to_retrieve_package
  85. # fi
  86. return 0
  87. }
  88.  
  89. # do_python URL FILENAME
  90. do_python() {
  91. echo "trying python..."
  92. python -c "import sys,urllib2 ; sys.stdout.write(urllib2.urlopen(sys.argv[1]).read())" "$1" > "$2"
  93. # check for bad return status
  94. test $? -ne 0 && return 1
  95. # check for bad output or empty file
  96. #grep "The specified key does not exist." "$2" 2>&1 >/dev/null
  97. #if test $? -eq 0 || test ! -s "$2"; then
  98. # unable_to_retrieve_package
  99. #fi
  100. return 0
  101. }
  102.  
  103. # do_download URL FILENAME
  104. do_download() {
  105. PATH=/opt/local/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
  106. export PATH
  107.  
  108. echo "downloading $1"
  109. echo " to file $2"
  110.  
  111. # we try all of these until we get success.
  112. # perl, in particular may be present but LWP::Simple may not be installed
  113.  
  114. if exists wget; then
  115. do_wget $1 $2 && return 0
  116. fi
  117.  
  118. if exists curl; then
  119. do_curl $1 $2 && return 0
  120. fi
  121.  
  122. if exists fetch; then
  123. do_fetch $1 $2 && return 0
  124. fi
  125.  
  126. if exists perl; then
  127. do_perl $1 $2 && return 0
  128. fi
  129.  
  130. if exists python; then
  131. do_python $1 $2 && return 0
  132. fi
  133.  
  134. echo ">>>>>> wget, curl, fetch, perl or python not found on this instance."
  135. return 16
  136. }
  137.  
  138. # @param $1 the omnibus root directory
  139. # @param $2 the requested version of omnibus package
  140. # @return 0 if omnibus needs to be installed, non-zero otherwise
  141. should_update_chef() {
  142. if test ! -d "$1" ; then return 0
  143. elif test "$2" = "true" ; then return 1
  144. elif test "$2" = "latest" ; then return 0
  145. fi
  146.  
  147. local version="`$1/bin/chef-solo -v | cut -d " " -f 2`"
  148. if echo "$version" | grep "^$2" 2>&1 >/dev/null; then
  149. return 1
  150. else
  151. return 0
  152. fi
  153. }
  154.  
  155. if should_update_chef "/opt/chef" "11.8.2" ; then
  156. echo "-----> Installing Chef Omnibus (11.8.2)"
  157. do_download https://www.chef.io/chef/install.sh /tmp/install.sh
  158. sudo -E sh /tmp/install.sh -v 11.8.2
  159. else
  160. echo "-----> Chef Omnibus installation detected (11.8.2)"
  161. fi
  162. ')
  163. 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"]}>
  164. -----> Chef Omnibus installation detected (11.8.2)
  165. 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 '
  166. sudo -E rm -rf /tmp/kitchen/cookbooks /tmp/kitchen/data /tmp/kitchen/data_bags /tmp/kitchen/environments /tmp/kitchen/roles /tmp/kitchen/clients
  167. mkdir -p /tmp/kitchen
  168. ')
  169. Transferring files to <default-ubuntu-1404>
  170. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/attributes/default.rb (1036 bytes)
  171. 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)
  172. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/libraries/helpers.rb (1334 bytes)
  173. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/libraries/matchers.rb (553 bytes)
  174. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/libraries/network.rb (923 bytes)
  175. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/metadata.json (11766 bytes)
  176. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/providers/preference.rb (1781 bytes)
  177. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/providers/repository.rb (4467 bytes)
  178. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/README.md (9991 bytes)
  179. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/recipes/cacher-client.rb (2668 bytes)
  180. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/recipes/cacher-ng.rb (1109 bytes)
  181. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/recipes/default.rb (2543 bytes)
  182. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/resources/preference.rb (994 bytes)
  183. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/resources/repository.rb (1673 bytes)
  184. 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)
  185. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/templates/default/01proxy.erb (190 bytes)
  186. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/apt/templates/default/acng.conf.erb (13659 bytes)
  187. 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)
  188. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/attributes/default.rb (1043 bytes)
  189. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/files/default/handlers/README (67 bytes)
  190. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/libraries/matchers.rb (992 bytes)
  191. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/metadata.json (4708 bytes)
  192. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/providers/default.rb (3192 bytes)
  193. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/README.md (4089 bytes)
  194. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/recipes/default.rb (1126 bytes)
  195. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/recipes/json_file.rb (950 bytes)
  196. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/chef_handler/resources/default.rb (1208 bytes)
  197. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/attributes/default.rb (2881 bytes)
  198. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/libraries/default.rb (2007 bytes)
  199. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/metadata.json (566 bytes)
  200. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/providers/admin.rb (1654 bytes)
  201. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/providers/database.rb (1120 bytes)
  202. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/providers/default.rb (1889 bytes)
  203. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/providers/user.rb (2634 bytes)
  204. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/README.md (2006 bytes)
  205. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/recipes/cli_client.rb (831 bytes)
  206. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/recipes/client.rb (897 bytes)
  207. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/recipes/default.rb (1053 bytes)
  208. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/recipes/handler.rb (1361 bytes)
  209. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/recipes/ruby_client.rb (886 bytes)
  210. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/resources/admin.rb (902 bytes)
  211. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/resources/database.rb (849 bytes)
  212. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/resources/default.rb (1010 bytes)
  213. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/influxdb/resources/user.rb (1026 bytes)
  214. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/ND-influxdb/attributes/default.rb (191 bytes)
  215. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/ND-influxdb/metadata.json (647 bytes)
  216. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/ND-influxdb/README.md (623 bytes)
  217. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/cookbooks/ND-influxdb/recipes/default.rb (788 bytes)
  218. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/dna.json (65 bytes)
  219. D Uploaded /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc/solo.rb (619 bytes)
  220. D Transfer complete
  221. 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 '
  222. 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
  223. ')
  224. [2015-04-29T21:35:30+00:00] INFO: Forking chef instance to converge...
  225. [2015-04-29T21:35:30+00:00] DEBUG: Fork successful. Waiting for new chef pid: 2400
  226. [2015-04-29T21:35:30+00:00] DEBUG: Forked instance now converging
  227. Starting Chef Client, version 11.8.2
  228. [2015-04-29T21:35:30+00:00] INFO: *** Chef 11.8.2 ***
  229. [2015-04-29T21:35:30+00:00] INFO: Chef-client pid: 2400
  230. [2015-04-29T21:35:30+00:00] DEBUG: Building node object for default-ubuntu-1404
  231. [2015-04-29T21:35:30+00:00] DEBUG: Extracting run list from JSON attributes provided on command line
  232. [2015-04-29T21:35:30+00:00] INFO: Setting the run_list to ["recipe[apt::default]", "recipe[influxdb::default]"] from JSON
  233. [2015-04-29T21:35:30+00:00] DEBUG: Applying attributes from json file
  234. [2015-04-29T21:35:30+00:00] DEBUG: Platform is ubuntu version 14.04
  235. [2015-04-29T21:35:30+00:00] INFO: Run List is [recipe[apt::default], recipe[influxdb::default]]
  236. [2015-04-29T21:35:30+00:00] INFO: Run List expands to [apt::default, influxdb::default]
  237. [2015-04-29T21:35:30+00:00] INFO: Starting Chef Run for default-ubuntu-1404
  238. [2015-04-29T21:35:30+00:00] INFO: Running start handlers
  239. [2015-04-29T21:35:30+00:00] INFO: Start handlers complete.
  240. [2015-04-29T21:35:30+00:00] DEBUG: No chefignore file found at /tmp/kitchen/cookbooks/chefignore no files will be ignored
  241. Compiling Cookbooks...
  242. [2015-04-29T21:35:30+00:00] DEBUG: Cookbooks to compile: [:apt, :chef_handler, :influxdb]
  243. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook apt's library file: /tmp/kitchen/cookbooks/apt/libraries/helpers.rb
  244. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook apt's library file: /tmp/kitchen/cookbooks/apt/libraries/matchers.rb
  245. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook apt's library file: /tmp/kitchen/cookbooks/apt/libraries/network.rb
  246. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook chef_handler's library file: /tmp/kitchen/cookbooks/chef_handler/libraries/matchers.rb
  247. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's library file: /tmp/kitchen/cookbooks/influxdb/libraries/default.rb
  248. [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
  249. [2015-04-29T21:35:30+00:00] DEBUG: Loading Attribute apt::default
  250. [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
  251. [2015-04-29T21:35:30+00:00] DEBUG: Loading Attribute chef_handler::default
  252. [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
  253. [2015-04-29T21:35:30+00:00] DEBUG: Loading Attribute influxdb::default
  254. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook apt's providers from /tmp/kitchen/cookbooks/apt/providers/preference.rb
  255. [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
  256. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook apt's providers from /tmp/kitchen/cookbooks/apt/providers/repository.rb
  257. [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
  258. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook apt's resources from /tmp/kitchen/cookbooks/apt/resources/preference.rb
  259. [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
  260. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook apt's resources from /tmp/kitchen/cookbooks/apt/resources/repository.rb
  261. [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
  262. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook chef_handler's providers from /tmp/kitchen/cookbooks/chef_handler/providers/default.rb
  263. [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
  264. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook chef_handler's resources from /tmp/kitchen/cookbooks/chef_handler/resources/default.rb
  265. [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
  266. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's providers from /tmp/kitchen/cookbooks/influxdb/providers/admin.rb
  267. [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
  268. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's providers from /tmp/kitchen/cookbooks/influxdb/providers/database.rb
  269. [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
  270. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's providers from /tmp/kitchen/cookbooks/influxdb/providers/default.rb
  271. [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
  272. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's providers from /tmp/kitchen/cookbooks/influxdb/providers/user.rb
  273. [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
  274. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's resources from /tmp/kitchen/cookbooks/influxdb/resources/admin.rb
  275. [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
  276. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's resources from /tmp/kitchen/cookbooks/influxdb/resources/database.rb
  277. [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
  278. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's resources from /tmp/kitchen/cookbooks/influxdb/resources/default.rb
  279. [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
  280. [2015-04-29T21:35:30+00:00] DEBUG: Loading cookbook influxdb's resources from /tmp/kitchen/cookbooks/influxdb/resources/user.rb
  281. [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
  282. [2015-04-29T21:35:30+00:00] DEBUG: Loading Recipe apt::default via include_recipe
  283. [2015-04-29T21:35:30+00:00] DEBUG: Found recipe default in cookbook apt
  284. [2015-04-29T21:35:30+00:00] DEBUG: Loading Recipe influxdb::default via include_recipe
  285. [2015-04-29T21:35:30+00:00] DEBUG: Found recipe default in cookbook influxdb
  286. [2015-04-29T21:35:30+00:00] DEBUG: Loading from cookbook_path: /tmp/kitchen/cookbooks, /tmp/kitchen/site-cookbooks
  287. Converging 9 resources
  288. [2015-04-29T21:35:30+00:00] DEBUG: Converging node default-ubuntu-1404
  289. Recipe: apt::default
  290. * 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)
  291. (skipped due to not_if)
  292. [2015-04-29T21:35:30+00:00] DEBUG: Skipping execute[apt-get-update] due to not_if ruby block
  293. * 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)
  294. (skipped due to action :nothing)
  295. [2015-04-29T21:35:30+00:00] DEBUG: Skipping execute[apt-get update] due to action :nothing
  296. * 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)
  297. (skipped due to action :nothing)
  298. [2015-04-29T21:35:30+00:00] DEBUG: Skipping execute[apt-get autoremove] due to action :nothing
  299. * 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)
  300. (skipped due to action :nothing)
  301. [2015-04-29T21:35:30+00:00] DEBUG: Skipping execute[apt-get autoclean] due to action :nothing
  302. * 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)
  303. [2015-04-29T21:35:30+00:00] DEBUG: Platform ubuntu version 14.04 found
  304. [2015-04-29T21:35:30+00:00] DEBUG: package[update-notifier-common] checking package status for update-notifier-common
  305. update-notifier-common:
  306. Installed: 0.154.1ubuntu1
  307. Candidate: 0.154.1ubuntu1
  308. Version table:
  309. *** 0.154.1ubuntu1 0
  310. 500 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 Packages
  311. 100 /var/lib/dpkg/status
  312. 0.154.1 0
  313. 500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
  314. [2015-04-29T21:35:30+00:00] DEBUG: package[update-notifier-common] current version is 0.154.1ubuntu1
  315. [2015-04-29T21:35:30+00:00] DEBUG: package[update-notifier-common] candidate version is 0.154.1ubuntu1
  316. [2015-04-29T21:35:30+00:00] DEBUG: package[update-notifier-common] is already installed - nothing to do
  317. (up to date)
  318. * 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)
  319. (skipped due to only_if)
  320. [2015-04-29T21:35:30+00:00] DEBUG: Skipping execute[apt-get-update-periodic] due to only_if ruby block
  321. * 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)
  322. [2015-04-29T21:35:30+00:00] DEBUG: found target_mode == current_mode, not updating mode
  323. [2015-04-29T21:35:30+00:00] DEBUG: found target_uid == current_uid, not updating owner
  324. [2015-04-29T21:35:30+00:00] DEBUG: found target_gid == current_gid, not updating group
  325. (up to date)
  326. * 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)
  327. [2015-04-29T21:35:30+00:00] DEBUG: found target_mode == current_mode, not updating mode
  328. [2015-04-29T21:35:30+00:00] DEBUG: found target_uid == current_uid, not updating owner
  329. [2015-04-29T21:35:30+00:00] DEBUG: found target_gid == current_gid, not updating group
  330. (up to date)
  331. Recipe: influxdb::default
  332. * influxdb[main] action create[2015-04-29T21:35:30+00:00] INFO: Processing influxdb[main] action create (influxdb::default line 26)
  333. [2015-04-29T21:35:30+00:00] DEBUG: Platform ubuntu version 14.04 found
  334. Recipe: <Dynamically Defined Resource>
  335. * 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)
  336. [2015-04-29T21:35:30+00:00] DEBUG: remote_file[/tmp/kitchen/cache/influxdb.deb] checking for changes
  337. [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\""}
  338. [2015-04-29T21:35:30+00:00] DEBUG: Initiating GET to http://s3.amazonaws.com/influxdb/influxdb_latest_amd64.deb
  339. [2015-04-29T21:35:30+00:00] DEBUG: ---- HTTP Request Header Data: ----
  340. [2015-04-29T21:35:30+00:00] DEBUG: if-modified-since: Wed, 29 Apr 2015 21:23:32 GMT
  341. [2015-04-29T21:35:30+00:00] DEBUG: if-none-match: "ae90f6ec78b044411e466b5ebe297871-3"
  342. [2015-04-29T21:35:30+00:00] DEBUG: Accept-Encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3
  343. [2015-04-29T21:35:35+00:00] DEBUG: ---- HTTP Status and Header Data: ----
  344. [2015-04-29T21:35:35+00:00] DEBUG: HTTP 1.1 304 Not Modified
  345. [2015-04-29T21:35:35+00:00] DEBUG: x-amz-id-2: 0Jr0IaZmiRG0EELcqYT3NBq3LRTbb/HR24uFRwLgXGv/EstJvp+n98dJH1MegOnV
  346. [2015-04-29T21:35:35+00:00] DEBUG: x-amz-request-id: D2E18EFC84CF40C5
  347. [2015-04-29T21:35:35+00:00] DEBUG: date: Wed, 29 Apr 2015 21:35:36 GMT
  348. [2015-04-29T21:35:35+00:00] DEBUG: last-modified: Mon, 29 Dec 2014 06:20:32 GMT
  349. [2015-04-29T21:35:35+00:00] DEBUG: etag: "ae90f6ec78b044411e466b5ebe297871-3"
  350. [2015-04-29T21:35:35+00:00] DEBUG: server: AmazonS3
  351. [2015-04-29T21:35:35+00:00] DEBUG: ---- End HTTP Status/Header Data ----
  352. [2015-04-29T21:35:35+00:00] DEBUG: found target_mode == nil, so no mode was specified on resource, not managing mode
  353. [2015-04-29T21:35:35+00:00] DEBUG: found target_uid == nil, so no owner was specified on resource, not managing owner
  354. [2015-04-29T21:35:35+00:00] DEBUG: found target_gid == nil, so no group was specified on resource, not managing group
  355. (up to date)
  356. * 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)
  357. [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
  358. [2015-04-29T21:35:35+00:00] DEBUG: package[/tmp/kitchen/cache/influxdb.deb] checking dpkg status
  359. [2015-04-29T21:35:35+00:00] DEBUG: package[/tmp/kitchen/cache/influxdb.deb] checking install state
  360. [2015-04-29T21:35:35+00:00] DEBUG: package[/tmp/kitchen/cache/influxdb.deb] current version is 0.8.8
  361. [2015-04-29T21:35:35+00:00] DEBUG: package[/tmp/kitchen/cache/influxdb.deb] is already installed - nothing to do
  362. (up to date)
  363. * service[influxdb] action enable[2015-04-29T21:35:35+00:00] INFO: Processing service[influxdb] action enable (dynamically defined)
  364. [2015-04-29T21:35:35+00:00] DEBUG: Platform ubuntu version 14.04 found
  365. [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] falling back to process table inspection
  366. [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] attempting to match 'influxdb' (/influxdb/) against process list
  367. UID PID PPID C STIME TTY TIME CMD
  368. root 1 0 0 21:21 ? 00:00:00 /sbin/init
  369. root 2 0 0 21:21 ? 00:00:00 [kthreadd]
  370. root 3 2 0 21:21 ? 00:00:00 [ksoftirqd/0]
  371. root 4 2 0 21:21 ? 00:00:00 [kworker/0:0]
  372. root 5 2 0 21:21 ? 00:00:00 [kworker/0:0H]
  373. root 6 2 0 21:21 ? 00:00:00 [kworker/u2:0]
  374. root 7 2 0 21:21 ? 00:00:00 [rcu_sched]
  375. root 8 2 0 21:21 ? 00:00:00 [rcuos/0]
  376. root 9 2 0 21:21 ? 00:00:00 [rcu_bh]
  377. root 10 2 0 21:21 ? 00:00:00 [rcuob/0]
  378. root 11 2 0 21:21 ? 00:00:00 [migration/0]
  379. root 12 2 0 21:21 ? 00:00:00 [watchdog/0]
  380. root 13 2 0 21:21 ? 00:00:00 [khelper]
  381. root 14 2 0 21:21 ? 00:00:00 [kdevtmpfs]
  382. root 15 2 0 21:21 ? 00:00:00 [netns]
  383. root 16 2 0 21:21 ? 00:00:00 [writeback]
  384. root 17 2 0 21:21 ? 00:00:00 [kintegrityd]
  385. root 18 2 0 21:21 ? 00:00:00 [bioset]
  386. root 19 2 0 21:21 ? 00:00:00 [kworker/u3:0]
  387. root 20 2 0 21:21 ? 00:00:00 [kblockd]
  388. root 21 2 0 21:21 ? 00:00:00 [ata_sff]
  389. root 22 2 0 21:21 ? 00:00:00 [khubd]
  390. root 23 2 0 21:21 ? 00:00:00 [md]
  391. root 24 2 0 21:21 ? 00:00:00 [devfreq_wq]
  392. root 25 2 0 21:21 ? 00:00:00 [kworker/0:1]
  393. root 26 2 0 21:21 ? 00:00:00 [khungtaskd]
  394. root 27 2 0 21:21 ? 00:00:00 [kswapd0]
  395. root 28 2 0 21:21 ? 00:00:00 [ksmd]
  396. root 29 2 0 21:21 ? 00:00:00 [fsnotify_mark]
  397. root 30 2 0 21:21 ? 00:00:00 [ecryptfs-kthrea]
  398. root 31 2 0 21:21 ? 00:00:00 [crypto]
  399. root 43 2 0 21:21 ? 00:00:00 [kthrotld]
  400. root 45 2 0 21:21 ? 00:00:00 [scsi_eh_0]
  401. root 46 2 0 21:21 ? 00:00:00 [scsi_eh_1]
  402. root 67 2 0 21:21 ? 00:00:00 [deferwq]
  403. root 68 2 0 21:21 ? 00:00:00 [charger_manager]
  404. root 69 2 0 21:21 ? 00:00:00 [kworker/u2:4]
  405. root 111 2 0 21:21 ? 00:00:00 [kpsmoused]
  406. root 117 2 0 21:21 ? 00:00:00 [kdmflush]
  407. root 118 2 0 21:21 ? 00:00:00 [bioset]
  408. root 120 2 0 21:21 ? 00:00:00 [kdmflush]
  409. root 123 2 0 21:21 ? 00:00:00 [bioset]
  410. root 175 2 0 21:21 ? 00:00:00 [jbd2/dm-0-8]
  411. root 176 2 0 21:21 ? 00:00:00 [ext4-rsv-conver]
  412. root 303 1 0 21:21 ? 00:00:00 upstart-udev-bridge --daemon
  413. root 310 1 0 21:21 ? 00:00:00 /lib/systemd/systemd-udevd --daemon
  414. root 316 2 0 21:21 ? 00:00:00 [kworker/u3:1]
  415. root 367 2 0 21:21 ? 00:00:00 [ext4-rsv-conver]
  416. root 395 2 0 21:21 ? 00:00:00 [rpciod]
  417. root 401 2 0 21:21 ? 00:00:00 [nfsiod]
  418. root 406 2 0 21:21 ? 00:00:00 [iprt]
  419. message+ 408 1 0 21:21 ? 00:00:00 dbus-daemon --system --fork
  420. root 433 1 0 21:21 ? 00:00:00 /lib/systemd/systemd-logind
  421. syslog 445 1 0 21:21 ? 00:00:00 rsyslogd
  422. root 466 1 0 21:21 ? 00:00:00 rpc.idmapd
  423. root 551 1 0 21:21 ? 00:00:00 rpcbind
  424. statd 568 1 0 21:21 ? 00:00:00 rpc.statd -L
  425. root 575 1 0 21:21 ? 00:00:00 upstart-file-bridge --daemon
  426. root 578 1 0 21:21 ? 00:00:00 upstart-socket-bridge --daemon
  427. root 815 1 0 21:21 tty4 00:00:00 /sbin/getty -8 38400 tty4
  428. root 817 1 0 21:21 tty5 00:00:00 /sbin/getty -8 38400 tty5
  429. root 820 1 0 21:21 tty2 00:00:00 /sbin/getty -8 38400 tty2
  430. root 821 1 0 21:21 tty3 00:00:00 /sbin/getty -8 38400 tty3
  431. root 823 1 0 21:21 tty6 00:00:00 /sbin/getty -8 38400 tty6
  432.  
  433. root 903 1 0 21:22 ? 00:00:00 /usr/sbin/VBoxService
  434. root 933 1 0 21:22 tty1 00:00:00 /sbin/getty -8 38400 tty1
  435. root 950 2 0 21:22 ? 00:00:00 [kauditd]
  436. 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
  437. root 1290 1 0 21:22 ? 00:00:00 /usr/sbin/sshd -D
  438. influxdb 2107 1 0 21:33 ? 00:00:00 /usr/bin/influxdb -pidfile /opt/influxdb/shared/influxdb.pid -config /opt/influxdb/shared/config.toml
  439. root 2338 1290 0 21:35 ? 00:00:00 sshd: vagrant [priv]
  440. vagrant 2374 2338 1 21:35 ? 00:00:00 sshd: vagrant@pts/0
  441. 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
  442. 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
  443. 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
  444. root 2400 2395 3 21:35 pts/0 00:00:00 chef-solo worker: ppid=2395;start=21:35:30;
  445. root 2534 2400 0 21:35 pts/0 00:00:00 ps -ef
  446. [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] running: true
  447. [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] runlevel 0, action stop, priority 20
  448. [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] runlevel 1, action stop, priority 20
  449. [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] runlevel 2, action start, priority 20
  450. [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] runlevel 3, action start, priority 20
  451. [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] runlevel 4, action start, priority 20
  452. [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] runlevel 5, action start, priority 20
  453. [2015-04-29T21:35:35+00:00] DEBUG: service[influxdb] runlevel 6, action stop, priority 20
  454. [2015-04-29T21:35:35+00:00] DEBUG: Executing /usr/sbin/update-rc.d -f influxdb remove
  455. [2015-04-29T21:35:35+00:00] DEBUG: ---- Begin output of /usr/sbin/update-rc.d -f influxdb remove ----
  456. [2015-04-29T21:35:35+00:00] DEBUG: STDOUT: Removing any system startup links for /etc/init.d/influxdb ...
  457. /etc/rc0.d/K20influxdb
  458. /etc/rc1.d/K20influxdb
  459. /etc/rc2.d/S20influxdb
  460. /etc/rc3.d/S20influxdb
  461. /etc/rc4.d/S20influxdb
  462. /etc/rc5.d/S20influxdb
  463. /etc/rc6.d/K20influxdb
  464. [2015-04-29T21:35:35+00:00] DEBUG: STDERR:
  465. [2015-04-29T21:35:35+00:00] DEBUG: ---- End output of /usr/sbin/update-rc.d -f influxdb remove ----
  466. [2015-04-29T21:35:35+00:00] DEBUG: Ran /usr/sbin/update-rc.d -f influxdb remove returned 0
  467. [2015-04-29T21:35:35+00:00] DEBUG: Executing /usr/sbin/update-rc.d influxdb defaults
  468. [2015-04-29T21:35:35+00:00] DEBUG: ---- Begin output of /usr/sbin/update-rc.d influxdb defaults ----
  469. [2015-04-29T21:35:35+00:00] DEBUG: STDOUT: Adding system startup for /etc/init.d/influxdb ...
  470. /etc/rc0.d/K20influxdb -> ../init.d/influxdb
  471. /etc/rc1.d/K20influxdb -> ../init.d/influxdb
  472. /etc/rc6.d/K20influxdb -> ../init.d/influxdb
  473. /etc/rc2.d/S20influxdb -> ../init.d/influxdb
  474. /etc/rc3.d/S20influxdb -> ../init.d/influxdb
  475. /etc/rc4.d/S20influxdb -> ../init.d/influxdb
  476. /etc/rc5.d/S20influxdb -> ../init.d/influxdb
  477. [2015-04-29T21:35:35+00:00] DEBUG: STDERR:
  478. [2015-04-29T21:35:35+00:00] DEBUG: ---- End output of /usr/sbin/update-rc.d influxdb defaults ----
  479. [2015-04-29T21:35:35+00:00] DEBUG: Ran /usr/sbin/update-rc.d influxdb defaults returned 0
  480. [2015-04-29T21:35:35+00:00] INFO: service[influxdb] enabled
  481.  
  482. - enable service service[influxdb]
  483. * chef_gem[toml] action install[2015-04-29T21:35:35+00:00] INFO: Processing chef_gem[toml] action install (dynamically defined)
  484. [2015-04-29T21:35:35+00:00] DEBUG: chef_gem[toml] detected omnibus installation in /opt/chef/embedded/bin
  485. [2015-04-29T21:35:35+00:00] DEBUG: chef_gem[toml] using gem from running ruby environment
  486. [2015-04-29T21:35:35+00:00] DEBUG: chef_gem[toml] found installed gem toml version 0.1.2 matching toml (>= 0)
  487. [2015-04-29T21:35:35+00:00] DEBUG: chef_gem[toml] is already installed - nothing to do
  488. (up to date)
  489. * 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)
  490. [2015-04-29T21:35:35+00:00] DEBUG: found target_mode == current_mode, not updating mode
  491. [2015-04-29T21:35:35+00:00] DEBUG: found target_uid == current_uid, not updating owner
  492. [2015-04-29T21:35:35+00:00] DEBUG: found target_gid == nil, so no group was specified on resource, not managing group
  493. (up to date)
  494. * 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)
  495. [2015-04-29T21:35:35+00:00] DEBUG: found target_mode == nil, so no mode was specified on resource, not managing mode
  496. [2015-04-29T21:35:35+00:00] DEBUG: found target_uid == current_uid, not updating owner
  497. [2015-04-29T21:35:35+00:00] DEBUG: found target_gid == current_gid, not updating group
  498. [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
  499.  
  500. - update utime on file /opt/influxdb/shared/log.txt
  501. (up to date)
  502. [2015-04-29T21:35:35+00:00] INFO: Chef Run complete in 5.471235673 seconds
  503. [2015-04-29T21:35:35+00:00] INFO: Running report handlers
  504. [2015-04-29T21:35:35+00:00] INFO: Report handlers complete
  505. Chef Client finished, 2 resources updated
  506. [2015-04-29T21:35:35+00:00] DEBUG: Forked instance successfully reaped (pid: 2400)
  507. [2015-04-29T21:35:35+00:00] DEBUG: Exiting
  508. 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"}>
  509. D Cleaning up local sandbox in /var/folders/s_/l5bj6055425d3w3tkxl6339x5_cnf4/T/default-ubuntu-1404-sandbox-20150429-25842-buoywc
  510. Finished converging <default-ubuntu-1404> (0m7.36s).
  511. -----> Kitchen is finished. (0m7.81s)
Advertisement
Add Comment
Please, Sign In to add comment