Mercurial > hg > soundsoftware-site
annotate deploy/provision.d/090-perl-auth-module.sh @ 1600:ed9c467ef922 dockerise
Add hggit extension
author | Chris Cannam |
---|---|
date | Wed, 23 Aug 2017 11:32:50 +0100 |
parents | 94669513c53c |
children |
rev | line source |
---|---|
Chris@1577 | 1 #!/bin/bash |
Chris@1577 | 2 |
Chris@1577 | 3 set -e |
Chris@1577 | 4 |
Chris@1589 | 5 # Install the Apache mod_perl module used for hg repo access control |
Chris@1589 | 6 |
Chris@1577 | 7 if [ ! -f /usr/local/lib/site_perl/Apache/Authn/SoundSoftware.pm ]; then |
Chris@1577 | 8 mkdir -p /usr/local/lib/site_perl/Apache/Authn/ |
Chris@1589 | 9 cp /var/www/code/extra/soundsoftware/SoundSoftware.pm \ |
Chris@1589 | 10 /usr/local/lib/site_perl/Apache/Authn/ |
Chris@1577 | 11 fi |
Chris@1577 | 12 |