From 48889655c094226551202bac60c7b1093a9263e6 Mon Sep 17 00:00:00 2001 From: Trevor Cooper Date: Mon, 22 Sep 2014 11:04:34 -0700 Subject: [PATCH] Update to XQuartz 2.7.7 --- manifests/init.pp | 2 +- spec/classes/xquartz_spec.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index 8cb8a08..fa318db 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -4,7 +4,7 @@ # # include xquartz class xquartz ( - $version = '2.7.6', + $version = '2.7.7', ) { package { 'XQuartz': provider => 'pkgdmg', diff --git a/spec/classes/xquartz_spec.rb b/spec/classes/xquartz_spec.rb index 2849fa6..6edc94d 100644 --- a/spec/classes/xquartz_spec.rb +++ b/spec/classes/xquartz_spec.rb @@ -1,12 +1,12 @@ require 'spec_helper' describe 'xquartz' do - let(:params) { {:version => '2.7.5'} } + let(:params) { {:version => '2.7.7'} } it do should contain_package('XQuartz').with({ :provider => 'pkgdmg', - :source => 'http://xquartz.macosforge.org/downloads/SL/XQuartz-2.7.5.dmg' + :source => 'http://xquartz.macosforge.org/downloads/SL/XQuartz-2.7.7.dmg' }) end end