Skip to content

Commit

Permalink
Merge pull request #23 from djjudas21/lint_fixes
Browse files Browse the repository at this point in the history
Lint fixes
  • Loading branch information
jfryman committed Jan 15, 2015
2 parents f412c2e + 67106d2 commit dcff02d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions manifests/module.pp
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,17 @@
}

exec { "${name}-checkloaded":
refreshonly => false,
creates => "/etc/selinux/${::selinux_config_policy}/modules/active/modules/${name}.pp",
command => 'true',
notify => Exec["${name}-buildmod"],
refreshonly => false,
creates => "/etc/selinux/${::selinux_config_policy}/modules/active/modules/${name}.pp",
command => true,
notify => Exec["${name}-buildmod"],
}

## Begin Configuration
file { "${::selinux::params::sx_mod_dir}/${name}.te":
ensure => $ensure,
source => $source,
tag => 'selinux-module',
ensure => $ensure,
source => $source,
tag => 'selinux-module',
}
if !$use_makefile {
file { "${::selinux::params::sx_mod_dir}/${name}.mod":
Expand Down
6 changes: 3 additions & 3 deletions manifests/restorecond/config.pp
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
}

concat::fragment {'restorecond_config_default':
target => $selinux::restorecond::config_file,
source => 'puppet:///modules/selinux/restorecond.conf',
order => '05'
target => $selinux::restorecond::config_file,
source => 'puppet:///modules/selinux/restorecond.conf',
order => '05'
}
}

0 comments on commit dcff02d

Please sign in to comment.