Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecated hiera_hash #276

Merged
merged 1 commit into from
Aug 23, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -13,30 +13,30 @@
# Default: true
# [*client_defaults*]
# Hash of defaults for clients passed to openvpn::client defined type.
# Default: {} (hiera_hash)
# Default: {}
# [*clients*]
# Hash of clients passed to openvpn::client defined type.
# Default: {} (hiera_hash)
# Default: {}
# [*client_specific_config_defaults*]
# Hash of defaults for client specific configurations passed to
# openvpn::client_specific_config defined type.
# Default: {} (hiera_hash)
# Default: {}
# [*client_specific_configs*]
# Hash of client specific configurations passed to
# openvpn::client_specific_config defined type.
# Default: {} (hiera_hash)
# Default: {}
# [*revoke_defaults*]
# Hash of defaults for revokes passed to openvpn::revoke defined type.
# Default: {} (hiera_hash)
# Default: {}
# [*revokes*]
# Hash of revokes passed to openvpn::revoke defined type.
# Default: {} (hiera_hash)
# Default: {}
# [*server_defaults*]
# Hash of defaults for servers passed to openvpn::server defined type.
# Default: {} (hiera_hash)
# Default: {}
# [*servers*]
# Hash of servers passed to openvpn::server defined type.
# Default: {} (hiera_hash)
# Default: {}
#
#
# === Examples
Expand Down Expand Up @@ -71,14 +71,14 @@
class openvpn (
Boolean $autostart_all = true,
Boolean $manage_service = true,
Hash $client_defaults = hiera_hash('openvpn::client_defaults', {}),
Hash $clients = hiera_hash('openvpn::clients', {}),
Hash $client_specific_config_defaults = hiera_hash('openvpn::client_specific_config_defaults', {}),
Hash $client_specific_configs = hiera_hash('openvpn::client_specific_configs', {}),
Hash $revoke_defaults = hiera_hash('openvpn::revoke_defaults', {}),
Hash $revokes = hiera_hash('openvpn::revokes', {}),
Hash $server_defaults = hiera_hash('openvpn::server_defaults', {}),
Hash $servers = hiera_hash('openvpn::servers', {}),
Hash $client_defaults = {},
Hash $clients = {},
Hash $client_specific_config_defaults = {},
Hash $client_specific_configs = {},
Hash $revoke_defaults = {},
Hash $revokes = {},
Hash $server_defaults = {},
Hash $servers = {},
) {

class { 'openvpn::params': }
Expand Down