summaryrefslogtreecommitdiff
path: root/manifests/filter_setup.pp
blob: 63e3995b6caca5b5b3a0bf4de4e3a3aa7b332daf (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,
  }
}