From 088f73520249ef97fbab90b3f1285e5d94167ad0 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Thu, 12 Sep 2013 18:39:07 +0000 Subject: [PATCH] Minify jquery visibility The upstream git repo removed the minified version of the js lib, so do it ourselves on update. Change-Id: I7ff4a19387483332216cb91960b31fd9bb420e25 --- modules/openstack_project/manifests/static.pp | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/modules/openstack_project/manifests/static.pp b/modules/openstack_project/manifests/static.pp index 4cf35fd1b5..02b5ccadf7 100644 --- a/modules/openstack_project/manifests/static.pp +++ b/modules/openstack_project/manifests/static.pp @@ -213,6 +213,10 @@ class openstack_project::static ( ensure => present, } + package { 'yui-compressor': + ensure => present, + } + file { '/srv/static/status/index.html': ensure => present, source => 'puppet:///modules/openstack_project/status/index.html', @@ -245,11 +249,13 @@ class openstack_project::static ( source => 'https://github.com/mathiasbynens/jquery-visibility.git', } - file { '/srv/static/status/jquery-visibility.min.js': - ensure => link, - target => '/opt/jquery-visibility/jquery-visibility.min.js', - require => [File['/srv/static/status'], - Vcsrepo['/opt/jquery-visibility']], + exec { 'install_jquery-visibility' : + command => 'yui-compressor -o /srv/static/status/jquery-visibility.min.js /opt/jquery-visibility/jquery-visibility.js', + path => '/bin:/usr/bin', + refreshonly => true, + subscribe => Vcsrepo['/opt/jquery-visibility'], + require => [File['/srv/static/status'], + Vcsrepo['/opt/jquery-visibility']], } vcsrepo { '/opt/jquery-graphite':