summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 281daa4e75f287850cf5344f6e0f5458868dca12 (plain)
1
2
3
4
5
6
7
8
9
10
11
# @summary Prepares for configuring xorg
# @param conf_dir
#   Where puppet generated configuration files should be placed.
class xorg (
  String $conf_dir =  '/etc/X11/xorg.conf.d'
) {
  file { $conf_dir:
    ensure  => directory,
    recurse => false,
  }
}