summaryrefslogtreecommitdiff
path: root/puppet/modules/site_webapp/manifests/init.pp
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2013-08-26 12:04:14 +0200
committerAzul <azul@riseup.net>2013-08-27 14:16:54 +0200
commitb35146bf42bae91f1211b51dba568295f8d5b8f0 (patch)
tree762a556e4bec271ee57f22c975d0d6ad1d68d5e7 /puppet/modules/site_webapp/manifests/init.pp
parentc4024b72d5aeebbd814a78c741658ca50eb4dc71 (diff)
git:changes expect changes to certain files
You can either ensure assume-unchanged or ensure those changes are tracked. Used to keep the git status clean.
Diffstat (limited to 'puppet/modules/site_webapp/manifests/init.pp')
-rw-r--r--puppet/modules/site_webapp/manifests/init.pp13
1 files changed, 9 insertions, 4 deletions
diff --git a/puppet/modules/site_webapp/manifests/init.pp b/puppet/modules/site_webapp/manifests/init.pp
index ba7c7e0d..a8807a1a 100644
--- a/puppet/modules/site_webapp/manifests/init.pp
+++ b/puppet/modules/site_webapp/manifests/init.pp
@@ -138,10 +138,15 @@ class site_webapp {
source => $webapp['img_dir'];
}
- exec { 'git-assume-unchanged':
- cwd => '/srv/leap/webapp',
- command => '/bin/bash -c "/usr/bin/git update-index --assume-unchanged app/assets/stylesheets/head.scss app/assets/stylesheets/tail.scss public/favicon.ico"',
- user => 'leap-webapp'
+ git:changes {
+ '/srv/leap/webapp/app/assets/stylesheets/head.scss':
+ user => 'leap-webapp';
+
+ '/srv/leap/webapp/app/assets/stylesheets/tail.scss':
+ user => 'leap-webapp';
+
+ '/srv/leap/webapp/public/favicon.ico':
+ user => 'leap-webapp';
}
file {