aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystems/xorg.pp
blob: 0d92cec498833a153ebee88bbcace6fb1f76b9f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class xorg {
  # xorg
  if $xorg != false {
    file { "/etc/X11/xorg.conf":
      ensure  => present,
      owner   => root,
      group   => root,
      mode    => 0644,
      source  => [ "puppet:///modules/site_nodo/X11/xorg.conf/$hostname",
                   "puppet:///modules/site_nodo/X11/xorg.conf.default" ],
    }
  }
}