Commit c6f754d5 authored by Scotty Logan's avatar Scotty Logan
Browse files

cleaned up init.pp

parent ac7aef4d
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -30,12 +30,15 @@
class base (
  $timezone,
  $locale,
  $sources
  $sources,
  $package_type
) {

#  include downcase("base::${::operatingsystem}")
  class { 'base::apt': sources => $sources }
#  include base::packages
  class { "base::${package_type}":
    sources => $sources
  }

  include base::packages

  unless ($::packer_builder_type == 'docker' or $::virtual == 'docker') {

@@ -56,7 +59,7 @@ class base (
    group   => 'root',
    mode    => '0644',
    target  => "/usr/share/zoneinfo/${timezone}",
#    require => Package['tzdata'],
    require => Package['tzdata'],
  }

  file { '/etc/timezone':