Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.

Commit 2749b9f

Browse files
committedApr 8, 2019
puppet-lint: fix relative_classname_inclusion
1 parent 418bd27 commit 2749b9f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed
 

‎examples/extract.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
$caller_module_name = 'demo'
22

3-
class { '::staging':
3+
class { 'staging':
44
path => '/tmp/staging',
55
}
66

‎examples/file.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
$caller_module_name = 'demo'
22

3-
class { '::staging':
3+
class { 'staging':
44
path => '/tmp/staging',
55
}
66

‎examples/init.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include ::staging
1+
include staging

‎manifests/extract.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
$subdir = $caller_module_name #: subdir per module in staging directory.
1616
) {
1717

18-
include ::staging
18+
include staging
1919

2020
if $source {
2121
$source_path = $source

‎manifests/file.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
$novalidate = false #: Whether to bypass https validation - powershell only
2929
) {
3030

31-
include ::staging
31+
include staging
3232

3333
$quoted_source = shellquote($source)
3434

0 commit comments

Comments
 (0)
This repository has been archived.