diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-03-14 20:03:29 +0000 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-03-14 20:03:29 +0000 |
commit | ae9fde1eef1953777045e54333ebc7074357e340 (patch) | |
tree | 58a2c8796d529dc76f0125a22cb8673ca9858d6a /manifests | |
parent | db4d88e4df7c3f550cc7b2aa8aaff53f7bb193f7 (diff) | |
download | puppet-nodo-ae9fde1eef1953777045e54333ebc7074357e340.tar.gz puppet-nodo-ae9fde1eef1953777045e54333ebc7074357e340.tar.bz2 |
Adding xorg.conf into nodo::desktop
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 { |