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

Commit

Permalink
puppet-lint: fix relative_classname_inclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Apr 8, 2019
1 parent 418bd27 commit 2749b9f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/extract.pp
@@ -1,6 +1,6 @@
$caller_module_name = 'demo'

class { '::staging':
class { 'staging':
path => '/tmp/staging',
}

Expand Down
2 changes: 1 addition & 1 deletion examples/file.pp
@@ -1,6 +1,6 @@
$caller_module_name = 'demo'

class { '::staging':
class { 'staging':
path => '/tmp/staging',
}

Expand Down
2 changes: 1 addition & 1 deletion examples/init.pp
@@ -1 +1 @@
include ::staging
include staging
2 changes: 1 addition & 1 deletion manifests/extract.pp
Expand Up @@ -15,7 +15,7 @@
$subdir = $caller_module_name #: subdir per module in staging directory.
) {

include ::staging
include staging

if $source {
$source_path = $source
Expand Down
2 changes: 1 addition & 1 deletion manifests/file.pp
Expand Up @@ -28,7 +28,7 @@
$novalidate = false #: Whether to bypass https validation - powershell only
) {

include ::staging
include staging

$quoted_source = shellquote($source)

Expand Down

0 comments on commit 2749b9f

Please sign in to comment.