summaryrefslogtreecommitdiff
path: root/manifests/filter_setup.pp
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-01-15 12:17:08 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2023-01-15 12:27:55 +0100
commit4aa867dd7fab505a1d9a7ee09d040e100b3a455c (patch)
treee7271560e5cb5299240233ddefd5610f8725d6af /manifests/filter_setup.pp
parentDocument classes. (diff)
downloadcgit-4aa867dd7fab505a1d9a7ee09d040e100b3a455c.tar.gz
cgit-4aa867dd7fab505a1d9a7ee09d040e100b3a455c.tar.xz
Fix linter warnings.
Diffstat (limited to 'manifests/filter_setup.pp')
-rw-r--r--manifests/filter_setup.pp14
1 files changed, 7 insertions, 7 deletions
diff --git a/manifests/filter_setup.pp b/manifests/filter_setup.pp
index e79f70b..63e3995 100644
--- a/manifests/filter_setup.pp
+++ b/manifests/filter_setup.pp
@@ -3,13 +3,13 @@
# Where in the filesystem filters should be kept.
# @api private
class cgit::filter_setup (
- String $filterpath = $::cgit::filterpath,
+ String $filterpath = $cgit::filterpath,
) {
- file { dirname($filterpath):
- ensure => directory,
- }
+ file { dirname($filterpath):
+ ensure => directory,
+ }
- file { $filterpath:
- ensure => directory,
- }
+ file { $filterpath:
+ ensure => directory,
+ }
}