Skip to content

Commit 139b318

Browse files
committedApr 6, 2020
use new ip6HostNumber attribute in LDAP
1 parent 4e98a04 commit 139b318

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎modules/ocf/manifests/auth.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@
163163
$::dnsCname,
164164
$::fqdn,
165165
$::ipHostNumber,
166-
$::ipaddress6,
166+
$::ip6HostNumber,
167167
), '')
168168

169169
# Export SSH keys from every host if PuppetDB is running, and use them

‎modules/ocf/manifests/networking.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
$netmask = '255.255.255.0',
77
$gateway = '169.229.226.1',
88

9-
$ipaddress6 = regsubst($::ipHostNumber, '^(\d+)\.(\d+)\.(\d+)\.(\d+)$', '2607:f140:8801::1:\4'), # lint:ignore:variable_is_lowercase
9+
$ipaddress6 = $::ip6HostNumber, # lint:ignore:variable_is_lowercase
1010
$netmask6 = '64',
1111
$gateway6 = '2607:f140:8801::1',
1212

0 commit comments

Comments
 (0)
Please sign in to comment.