diff --git a/examples/openbsd_wifi.pp b/examples/openbsd_wifi.pp index ba77841..fdfe3ff 100644 --- a/examples/openbsd_wifi.pp +++ b/examples/openbsd_wifi.pp @@ -1,4 +1,4 @@ bsd::network::interface::wifi { 'wpi0': network_name => 'myssid', - address => [ 'dhcp', ] + address => [ 'dhcp', ], } diff --git a/examples/static.pp b/examples/static.pp index 5560027..ad21d0a 100644 --- a/examples/static.pp +++ b/examples/static.pp @@ -1,5 +1,5 @@ # A static network configuration -class { 'bsd::network': +class { '::bsd::network': v4gateway => $v4gateway, v6gateway => $v6gateway, } diff --git a/manifests/network/interface/carp.pp b/manifests/network/interface/carp.pp index 3949da6..69a1644 100644 --- a/manifests/network/interface/carp.pp +++ b/manifests/network/interface/carp.pp @@ -14,7 +14,7 @@ define bsd::network::interface::carp ( $raw_values = undef, ) { - include bsd::network::carp + include ::bsd::network::carp $if_name = $name validate_re($if_name, ['carp'])