Skip to content

Commit b7f41b2

Browse files
committed
puppet-lint: fix relative_classname_inclusion
1 parent 0dcde8d commit b7f41b2

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

manifests/client.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
$version = $::gluster::params::version,
3434
) inherits ::gluster::params {
3535

36-
class { '::gluster::install':
36+
class { 'gluster::install':
3737
server => false,
3838
client => true,
3939
repo => $repo,

manifests/init.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
Optional[Hash] $volumes = undef,
5555
) inherits ::gluster::params {
5656

57-
class { '::gluster::install':
57+
class { 'gluster::install':
5858
server => $server,
5959
server_package => $server_package,
6060
client => $client,
@@ -65,7 +65,7 @@
6565

6666
if $server {
6767
# if we installed the server bits, manage the service
68-
class { '::gluster::service':
68+
class { 'gluster::service':
6969
ensure => $::gluster::params::service_enable,
7070
}
7171

manifests/install.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
if $repo {
4141
# install the correct repo
4242
if ! defined ( Class['::gluster::repo'] ) {
43-
class { '::gluster::repo':
43+
class { 'gluster::repo':
4444
version => $version,
4545
}
4646
}

manifests/repo.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
) inherits ::gluster::params {
3131
case $::osfamily {
3232
'RedHat': {
33-
class { '::gluster::repo::yum':
33+
class { 'gluster::repo::yum':
3434
release => $release,
3535
}
3636
}
3737
'Debian': {
38-
class { '::gluster::repo::apt':
38+
class { 'gluster::repo::apt':
3939
version => $version,
4040
}
4141
}

manifests/repo/apt.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
$release = $::gluster::params::release,
3636
$priority = $::gluster::params::repo_priority,
3737
) {
38-
include '::apt'
38+
include 'apt'
3939

4040
$repo_key_name = $release ? {
4141
'3.10' => 'C784DD0FD61E38B8B1F65E10DAD761554A72C1DF',

0 commit comments

Comments
 (0)