aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2015-08-25 19:38:28 -0300
committerSilvio Rhatto <rhatto@riseup.net>2015-08-25 19:38:28 -0300
commit9cd084f24eb9fd81cdaae86a497b04e9f0469300 (patch)
treed13211820c53b70bf59a3abde8d78f35b674fb93 /manifests
parentde35bf91aaecfdfcb60bde062eb77ead5213e8bf (diff)
downloadpuppet-nodo-9cd084f24eb9fd81cdaae86a497b04e9f0469300.tar.gz
puppet-nodo-9cd084f24eb9fd81cdaae86a497b04e9f0469300.tar.bz2
Fix enable parameter at xorg config
Diffstat (limited to 'manifests')
-rw-r--r--manifests/subsystem/xorg.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/subsystem/xorg.pp b/manifests/subsystem/xorg.pp
index d6d394c..da8a069 100644
--- a/manifests/subsystem/xorg.pp
+++ b/manifests/subsystem/xorg.pp
@@ -1,7 +1,7 @@
class nodo::subsystem::xorg(
$enable = hiera('nodo::subsystem::xorg::enable', false)
) {
- if $xorg != false {
+ if $enable != false {
file { "/etc/X11/xorg.conf":
ensure => present,
owner => root,