Skip to content

Commit d4e40a1

Browse files
committed
puppet-lint: fix top_scope_facts warnings
1 parent fe0b5c3 commit d4e40a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

manifests/config.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@
120120
# is "inet_tls".
121121
if $ipv6 and $ssl_erl_dist {
122122
$proto_dist = 'inet6_tls'
123-
$ssl_path = " -pa ${::erl_ssl_path} "
123+
$ssl_path = " -pa ${facts['erl_ssl_path']} "
124124
} elsif $ssl_erl_dist {
125125
$proto_dist = 'inet_tls'
126-
$ssl_path = " -pa ${::erl_ssl_path} "
126+
$ssl_path = " -pa ${facts['erl_ssl_path']} "
127127
} else {
128128
$proto_dist = 'inet6_tcp'
129129
$ssl_path = ''

0 commit comments

Comments
 (0)