Skip to content

Commit b7b76e0

Browse files
author
Taylan Develioglu
committed
Remove trailing whitespace
1 parent 1ba4616 commit b7b76e0

File tree

1 file changed

+44
-44
lines changed

1 file changed

+44
-44
lines changed

manifests/init.pp

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,132 +1,132 @@
11
# == Class: consul
2-
#
2+
#
33
# Installs, configures and manages consul
4-
#
4+
#
55
# === Parameters
6-
#
6+
#
77
# [*acls*]
88
# Hash of consul_acl resources to create.
9-
#
9+
#
1010
# [*arch*]
1111
# Architecture of consul binary to download.
12-
#
12+
#
1313
# [*archive_path*]
1414
# Path used when installing consul via the url.
15-
#
15+
#
1616
# [*bin_dir*]
1717
# Directory to create the symlink to the consul binary in.
18-
#
18+
#
1919
# [*checks*]
2020
# Hash of consul::check resources to create.
21-
#
21+
#
2222
# [*config_defaults*]
2323
# Configuration defaults hash. Gets merged with config_hash.
24-
#
24+
#
2525
# [*config_dir*]
2626
# Directory to place consul configuration files in.
27-
#
27+
#
2828
# [*config_hash*]
2929
# Use this to populate the JSON config file for consul.
30-
#
30+
#
3131
# [*config_mode*]
3232
# Use this to set the JSON config file mode for consul.
33-
#
33+
#
3434
# [*download_extension*]
3535
# The extension of the archive file containing the consul binary to download.
36-
#
36+
#
3737
# [*download_url*]
3838
# Fully qualified url to the location of the archive file containing the consul binary.
39-
#
39+
#
4040
# [*download_url_base*]
4141
# Base url to the location of the archive file containing the consul binary.
42-
#
42+
#
4343
# [*extra_groups*]
4444
# Extra groups to add the consul system user to.
45-
#
45+
#
4646
# [*extra_options*]
4747
# Extra arguments to be passed to the consul agent
48-
#
48+
#
4949
# [*group*]
5050
# Name of the group that should own the consul configuration files.
51-
#
51+
#
5252
# [*init_style*]
5353
# What style of init system your system uses.
54-
#
54+
#
5555
# [*install_method*]
5656
# Valid strings: `package` - install via system package
5757
# `url` - download and extract from a url. Defaults to `url`.
5858
# `none` - disable install.
59-
#
59+
#
6060
# [*join_wan*]
6161
# Whether to join the wan on service start.
62-
#
62+
#
6363
# [*manage_group*]
6464
# Whether to create/manage the group that should own the consul configuration files.
65-
#
65+
#
6666
# [*manage_service*]
6767
# Whether to manage the consul service.
68-
#
68+
#
6969
# [*manage_user*]
7070
# Whether to create/manage the user that should own consul's configuration files.
71-
#
71+
#
7272
# [*os*]
7373
# OS component in the name of the archive file containing the consul binary.
74-
#
74+
#
7575
# [*package_ensure*]
7676
# Only valid when the install_method == package. Defaults to `latest`.
77-
#
77+
#
7878
# [*package_name*]
7979
# Only valid when the install_method == package. Defaults to `consul`.
80-
#
80+
#
8181
# [*pretty_config*]
8282
# Generates a human readable JSON config file. Defaults to `false`.
83-
#
83+
#
8484
# [*pretty_config_indent*]
8585
# Toggle indentation for human readable JSON file. Defaults to `4`.
86-
#
86+
#
8787
# [*purge_config_dir*]
8888
# Purge config files no longer generated by Puppet
89-
#
89+
#
9090
# [*restart_on_change*]
9191
# Determines whether to restart consul agent on $config_hash changes.
9292
# This will not affect reloads when service, check or watch configs change.
9393
# Defaults to `true`.
94-
#
94+
#
9595
# [*service_enable*]
9696
# Whether to enable the consul service to start at boot.
97-
#
97+
#
9898
# [*service_ensure*]
9999
# Whether the consul service should be running or not.
100-
#
100+
#
101101
# [*services*]
102102
# Hash of consul::service resources to create.
103-
#
103+
#
104104
# [*ui_download_extension*]
105105
# The extension of the archive file containing the consul ui to download.
106-
#
106+
#
107107
# [*ui_download_url*]
108108
# Fully qualified url to the location of the archive file containing the consul ui.
109-
#
109+
#
110110
# [*ui_download_url_base*]
111111
# Base url to the location of the archive file containing the consul ui.
112-
#
112+
#
113113
# [*ui_package_ensure*]
114114
# Only valid when the install_method == package. Defaults to `latest`.
115-
#
115+
#
116116
# [*ui_package_name*]
117117
# Only valid when the install_method == package. Defaults to `consul_ui`.
118-
#
118+
#
119119
# [*user*]
120120
# Name of the user that should own the consul configuration files.
121-
#
121+
#
122122
# [*version*]
123123
# Specify version of consul binary to download.
124-
#
124+
#
125125
# [*watches*]
126126
# Hash of consul::watch resources to create.
127-
#
127+
#
128128
# === Examples
129-
#
129+
#
130130
# @example
131131
# class { '::consul':
132132
# config_hash => {
@@ -136,7 +136,7 @@
136136
# 'retry-join' => ['172.16.0.1'],
137137
# },
138138
# }
139-
#
139+
#
140140
class consul (
141141
$acls = $::consul::params::acls,
142142
$arch = $::consul::params::arch,

0 commit comments

Comments
 (0)