Skip to content

Commit 0e72674

Browse files
author
Craig Watson
committed
Fixing tests, moving contain below class resources
1 parent fc67fa8 commit 0e72674

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

manifests/init.pp

+3-5
Original file line numberDiff line numberDiff line change
@@ -60,32 +60,31 @@
6060
}
6161

6262
if $enable_infra == true {
63-
contain ::newrelic::infra
6463
class { '::newrelic::infra':
6564
license_key => $license_key,
6665
manage_repo => $manage_repo,
6766
}
67+
contain ::newrelic::infra
6868
}
6969

7070
if $enable_server == true {
7171
if $facts['os']['family'] == 'Windows' {
7272
contain ::newrelic::server::windows
73-
class { '::newrelic::server::windows': }
7473
} else {
75-
contain ::newrelic::server::linux
7674
class { '::newrelic::server::linux':
7775
license_key => $license_key,
7876
manage_repo => $manage_repo,
7977
}
78+
contain ::newrelic::server::linux
8079
}
8180
}
8281

8382
if $enable_php_agent == true {
84-
contain ::newrelic::agent::php
8583
class { '::newrelic::agent::php':
8684
license_key => $license_key,
8785
manage_repo => $manage_repo,
8886
}
87+
contain ::newrelic::agent::php
8988
}
9089

9190

@@ -96,6 +95,5 @@
9695

9796
if $enable_dotnet_agent == true {
9897
contain ::newrelic::agent::dotnet
99-
class { '::newrelic::agent::dotnet': }
10098
}
10199
}

0 commit comments

Comments
 (0)