diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 8ae9589..5c56b3d 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -214,6 +214,15 @@ class nodo::desktop inherits nodo::physical { mode => 0644, ensure => present, } + + # xorg + file { "/etc/X11/xorg.conf": + ensure => present, + owner => root, + group => root, + mode => 0644, + source => "puppet://$server/files/etc/X11/xorg.conf/$hostname", + } } class nodo::vserver inherits nodo { |