2015-01-07 11 views
6

quando sono in esecuzione:ERRORE: Cookbook caricato nel percorso (s) ha metadati non validi

:$ vagrant provision 

o

:$ vagrant up 

ho un errore:

[email protected] processor (master):$ vagrant provision 
Using ssh deploy key of: /home/nisevi/.ssh/id_rsa 
==> default: Chef 12.0.3 Omnibus package is already installed. 
==> default: Running provisioner: shell... 
    default: Running: inline script 
==> default: W 
==> default: : 
==> default: Duplicate sources.list entry http://security.ubuntu.com/ubuntu/ trusty-security/multiverse amd64 Packages (/var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_trusty-security_multiverse_binary-amd64_Packages) 
==> default: W 
==> default: : Duplicate sources.list entry http://security.ubuntu.com/ubuntu/ trusty-security/multiverse i386 Packages (/var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_trusty-security_multiverse_binary-i386_Packages) 
==> default: W: Duplicate sources.list entry http://archive.ubuntu.com/ubuntu/ trusty/multiverse amd64 Packages (/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_multiverse_binary-amd64_Packages) 
==> default: W: Duplicate sources.list entry http://archive.ubuntu.com/ubuntu/ trusty/multiverse i386 Packages (/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_multiverse_binary-i386_Packages) 
==> default: W: Duplicate sources.list entry http://archive.ubuntu.com/ubuntu/ trusty-updates/multiverse amd64 Packages (/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty-updates_multiverse_binary-amd64_Packages) 
==> default: W: Duplicate sources.list entry http://archive.ubuntu.com/ubuntu/ trusty-updates/multiverse i386 Packages (/var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty-updates_multiverse_binary-i386_Packages) 
==> default: W: You may want to run apt-get update to correct these problems 
==> default: Running provisioner: chef_solo... 
==> default: Detected Chef (latest) is already installed 
Generating chef JSON and uploading... 
==> default: Running chef-solo... 
==> default: [2015-01-07T03:09:42+00:00] INFO: Forking chef instance to converge... 
==> default: [2015-01-07T03:09:42+00:00] INFO: *** Chef 12.0.3 *** 
==> default: [2015-01-07T03:09:42+00:00] INFO: Chef-client pid: 1224 
==> default: [2015-01-07T03:09:50+00:00] INFO: Setting the run_list to ["role[processor]"] from CLI options 
==> default: [2015-01-07T03:09:50+00:00] INFO: Run List is [role[processor]] 
==> default: [2015-01-07T03:09:50+00:00] INFO: Run List expands to [opsworks_initial_setup, mysql::client, dependencies, opsworks_ganglia::client, deploy::default, ba-processor::setup, ba-processor::deploy, sidekiq::deploy, opsworks_ganglia::configure-client] 
==> default: [2015-01-07T03:09:50+00:00] INFO: Starting Chef Run for ubuntu1404-opsworks 
==> default: [2015-01-07T03:09:50+00:00] INFO: Running start handlers 
==> default: [2015-01-07T03:09:50+00:00] INFO: Start handlers complete. 
==> default: [2015-01-07T03:09:51+00:00] WARN: found a directory vendor in the cookbook path, but it contains no cookbook files. skipping. 
==> default: [2015-01-07T03:09:51+00:00] ERROR: Running exception handlers 
==> default: [2015-01-07T03:09:51+00:00] ERROR: Exception handlers complete 
==> default: [2015-01-07T03:09:51+00:00] FATAL: Stacktrace dumped to /var/chef/cache/chef-stacktrace.out 
==> default: [2015-01-07T03:09:51+00:00] ERROR: Cookbook loaded at path(s) [/tmp/vagrant-chef-3/chef-solo-2/cookbooks/tad-server] has invalid metadata: The `name' attribute is required in cookbook metadata 
==> default: [2015-01-07T03:09:51+00:00] FATAL: Chef::Exceptions::ChildConvergeError: Chef run process exited unsuccessfully (exit code 1) 
Chef never successfully completed! Any errors should be visible in the 
output above. Please fix your recipes so that they properly complete. 

C'è qualcuno sapere cosa sta causando questo errore o cosa è correlato?

risposta

7

Come l'errore menziona, è deve aggiungere name 'tad-server' il file metadata.rb in questo libro di cucina. Nei giorni passati questo era facoltativo, quindi molte persone non hanno inserito un metadata.rb nei loro libri di cucina, ma alcuni strumenti ora lo richiedono al minimo. Tutti gli altri campi nei metadati restano facoltativi, sebbene sia altamente raccomandato lo version.

+0

ci sono così tante file di metadati. quale dovrei modificare? – Fawzan

+0

@Fawzan ... il metadata.rb nella directory radice del ricettario con il quale stai riscontrando il problema. – TryTryAgain

1

È necessario aggiungere il nome del libro di cucina al file metadata.rb all'interno della directory del libro di cucina. Mi sono imbattuto in questo con il ricettario chef-cliente. Caricamento fallito finché ho aggiunto la seguente linea a chef-client/metadata.rb

name "chef-client" 
+0

+1 per aver menzionato di aggiungere il nome del libro di cucina nel metadata.rb. Qualcosa come "nome" nome-libro di cucina "'. – georger

Problemi correlati