forked from jhoblitt/puppet-ganglia
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Joshua Hoblitt
committed
Nov 16, 2012
1 parent
497ab53
commit 69cd720
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,37 @@ | ||
# == Class: ganglia::web | ||
# | ||
# install and configure the ganglia web front end | ||
# | ||
# === Parameters | ||
# | ||
# All parameteres are optional. | ||
# | ||
# [*ganglia_ip*] | ||
# string - defaults to '127.0.0.1' | ||
# | ||
# [*ganglia_port*] | ||
# string - defaults to '8652' | ||
# | ||
# | ||
# === Examples | ||
# | ||
# class{ 'ganglia::web': } | ||
# | ||
# class{ 'ganglia::web': | ||
# $ganglia_ip = '192.168.0.1', | ||
# $ganglia_port = 8652, | ||
# } | ||
# | ||
# | ||
# === Authors | ||
# | ||
# Joshua Hoblitt <[email protected]> | ||
# | ||
# === Copyright | ||
# | ||
# Copyright (C) 2012 Joshua Hoblitt | ||
# | ||
|
||
class ganglia::web( | ||
$ganglia_ip = '127.0.0.1', | ||
$ganglia_port = 8652, | ||
|