Skip to content
This repository was archived by the owner on Dec 19, 2024. It is now read-only.

Commit 2a86dfc

Browse files
committed
Make Puppet Doc compliant with RDoc markup language
1 parent 5833b17 commit 2a86dfc

File tree

2 files changed

+16
-12
lines changed

2 files changed

+16
-12
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
###1.1.2
2+
3+
* Make Puppet Doc compliant with RDoc markup language
4+
15
###1.1.1
26

37
* Add parameters validation

manifests/init.pp

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
1-
# === Class: oracle_java
1+
# == Class: oracle_java
22
#
33
# This module installs Oracle Java from official RPM packages
44
#
5-
# == Parameters
5+
# === Parameters:
66
#
7-
# $version:
7+
# [*version*]
88
# Java SE version to install (valid format: 'major'u'minor' or just 'major')
9-
# $type:
9+
# [*type*]
1010
# envionment type to install (valid: 'jre'|'jdk')
1111
#
12-
# === Actions
12+
# === Actions:
1313
#
1414
# - Install Oracle jre/jdk
1515
#
16-
# === Requires
16+
# === Requires:
1717
#
18-
# - puppetlabs/stdlib module
19-
# - 'wget' and 'sed' packages
18+
# * puppetlabs/stdlib module
19+
# * 'wget' and 'sed' packages
2020
#
2121
# === Sample Usage:
2222
#
23-
# class { '::oracle_java':
24-
# version => '8u5',
25-
# type => 'jdk'
26-
# }
23+
# class { '::oracle_java':
24+
# version => '8u5',
25+
# type => 'jdk'
26+
# }
2727
#
2828
class oracle_java ($version = '8', $type = 'jre') {
2929
# parameters validation

0 commit comments

Comments
 (0)