Ruby 在/tmp/vagrant puppet上找不到类

Ruby 在/tmp/vagrant puppet上找不到类,ruby,vagrant,puppet,Ruby,Vagrant,Puppet,我不能提供,我在其他线程中搜索,但没有人有用! 我正在使用Vagrant with Puppet这两个版本的最新版本,我的项目结构是: prova | |__Vagrantfile | |__puppet |__manifests | |__ubonda.pp | |__modules | |__apache

我不能提供,我在其他线程中搜索,但没有人有用! 我正在使用Vagrant with Puppet这两个版本的最新版本,我的项目结构是:

prova
|
|__Vagrantfile
|
|__puppet
        |__manifests
        |          |__ubonda.pp
        |
        |__modules
                 |
                 |__apache
                         |
                         |__manifests
                                    |
                                    |__apache.pp
我的档案是:

Vagrant.configure("2") do |config|
  config.vm.define "ubonda" do |vm0|
    vm0.vm.hostname = "ubonda"
    vm0.vm.box = "hashicorp/precise64"

    vm0.vm.provision "puppet" do |puppet|
      puppet.manifests_path = 'puppet/manifests'
      puppet.module_path = 'puppet/modules'
      puppet.manifest_file = "ubonda.pp"
    end
  end
end
我的ubonda.pp文件是:

# default path
Exec {
  path => ["/usr/bin", "/bin", "/usr/sbin", "/sbin", "/usr/local/bin", "/usr/local/sbin"]
}

include apache
class apache {

  # install apache
  package { "apache2":
  ensure => present,
  require => Exec["apt-get update"]
  }

  # ensures that mode_rewrite is loaded and modifies the default configuration file
  file { "/etc/apache2/mods-enabled/rewrite.load":
  ensure => link,
  target => "/etc/apache2/mods-available/rewrite.load",
  require => Package["apache2"]
  }

  # create directory
  file {"/etc/apache2/sites-enabled":
  ensure => directory,
  recurse => true,
  purge => true,
  force => true,
  before => File["/etc/apache2/sites-enabled/vagrant_webroot"],
  require => Package["apache2"],...
  }
}
我的apache.pp文件是:

# default path
Exec {
  path => ["/usr/bin", "/bin", "/usr/sbin", "/sbin", "/usr/local/bin", "/usr/local/sbin"]
}

include apache
class apache {

  # install apache
  package { "apache2":
  ensure => present,
  require => Exec["apt-get update"]
  }

  # ensures that mode_rewrite is loaded and modifies the default configuration file
  file { "/etc/apache2/mods-enabled/rewrite.load":
  ensure => link,
  target => "/etc/apache2/mods-available/rewrite.load",
  require => Package["apache2"]
  }

  # create directory
  file {"/etc/apache2/sites-enabled":
  ensure => directory,
  recurse => true,
  purge => true,
  force => true,
  before => File["/etc/apache2/sites-enabled/vagrant_webroot"],
  require => Package["apache2"],...
  }
}
如果我启动了流浪规定,我将获得:

==> ubonda: Running provisioner: puppet...
==> ubonda: Running Puppet with ubonda.pp...
==> ubonda: warning: Could not retrieve fact fqdn
==> ubonda: Could not find class apache for ubonda at /tmp/vagrant-puppet/manifests-846018e2aa141a5eb79a64b4015fc5f3/ubonda.pp:6 on node ubonda

我在ubonda vm的
tmp/manifests
文件夹中搜索,里面只有ubonda.pp,而在
tmp/modules
中有apache,但两者没有连接,因此我尝试在清单中复制,但没有任何更改,我该怎么做?

解决方案非常简单,但我将问题留给后代。 包含puppet规范的文件必须命名为
init.pp
,才能正确识别