Report abuse

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# schmee.pp
class bootstrap {
  include bootstrap::packages
}


class bootstrap::packages {
  notice("Installing necessary packages.")
  Package { ensure => latest }
  $packages = [ "apr-devel",
          "apr-util",
          "gcc",
          "gcc-c++",
          "httpd-devel",
          "ruby-devel",
          "rubygems",
          "make",
          "httpd", ]

  package { $packages }
}

puppet --debug --verbose schmee.pp

Could not parse for environment production: Syntax error at '}'; expected '}' at /tmp/schmee.pp:19