-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from enovance/lint
Lint puppet code and add puppetdoc documentation
- Loading branch information
Showing
9 changed files
with
192 additions
and
21 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
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
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
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
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
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
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 |
---|---|---|
|
@@ -25,7 +25,6 @@ | |
# | ||
# Copyright 2012 eNovance <[email protected]> | ||
# | ||
|
||
define ceph::mds ( | ||
$fsid, | ||
$auth_type = 'cephx', | ||
|
@@ -43,10 +42,10 @@ | |
$mds_data_expanded = "${mds_data}/mds.${name}" | ||
|
||
file { $mds_data_expanded: | ||
ensure => directory, | ||
owner => 'root', | ||
group => 0, | ||
mode => '0755', | ||
ensure => directory, | ||
owner => 'root', | ||
group => 0, | ||
mode => '0755', | ||
} | ||
|
||
exec { 'ceph-mds-keyring': | ||
|
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
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,5 +1,23 @@ | ||
# Configure yum repository | ||
# | ||
# == Parameters | ||
# | ||
# [*release*] | ||
# (Optional) The ceph release name | ||
# Default to 'cuttlefish' | ||
# | ||
# == Dependencies | ||
# | ||
# none | ||
# | ||
# == Authors | ||
# | ||
# Francois Charlier [email protected] | ||
# | ||
# == Copyright | ||
# | ||
# Copyright 2012 eNovance <[email protected]> | ||
# | ||
class ceph::yum::ceph ( | ||
$release = 'cuttlefish' | ||
) { | ||
|