summaryrefslogtreecommitdiff
path: root/manifests/filter_setup.pp
blob: e79f70b655aad0a1ace2460ecb1ceba4dfa3c450 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# @summary Basework for filters on system
# @param filterpath
#   Where in the filesystem filters should be kept.
# @api private
class cgit::filter_setup (
  String $filterpath = $::cgit::filterpath,
) {
    file { dirname($filterpath):
        ensure => directory,
    }

    file { $filterpath:
        ensure => directory,
    }
}