You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by of...@apache.org on 2017/04/22 17:44:52 UTC

bigtop git commit: puppet4: downcase in stdlib

Repository: bigtop
Updated Branches:
  refs/heads/puppet4 d7e2d3ae7 -> 56f081725


puppet4: downcase in stdlib


Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo
Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/56f08172
Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/56f08172
Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/56f08172

Branch: refs/heads/puppet4
Commit: 56f081725d372841b75bf297564597280bae80f8
Parents: d7e2d3a
Author: Olaf Flebbe <of...@oflebbe.de>
Authored: Sat Apr 22 19:44:30 2017 +0200
Committer: Olaf Flebbe <of...@oflebbe.de>
Committed: Sat Apr 22 19:44:30 2017 +0200

----------------------------------------------------------------------
 bigtop-deploy/puppet/manifests/site.pp | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bigtop/blob/56f08172/bigtop-deploy/puppet/manifests/site.pp
----------------------------------------------------------------------
diff --git a/bigtop-deploy/puppet/manifests/site.pp b/bigtop-deploy/puppet/manifests/site.pp
index f35a4e0..bf0212c 100644
--- a/bigtop-deploy/puppet/manifests/site.pp
+++ b/bigtop-deploy/puppet/manifests/site.pp
@@ -21,6 +21,8 @@ case $operatingsystem {
     }
     # Detect env to pick up default repo for other Bigtop supported OSs
     default: {
+      include stdlib
+
       $lower_os = downcase($operatingsystem)
       # We use code name such as trusty for Ubuntu instead of release version in bigtop's binary convenience repos
       if ($operatingsystem == "Ubuntu") { $release = $lsbdistcodename } else { $release = $operatingsystemmajrelease }