Mercurial > hg > soundsoftware-site
annotate deploy/provision.d/090-perl-auth-module.sh @ 1589:94669513c53c dockerise
Docs etc
author | Chris Cannam |
---|---|
date | Thu, 17 Aug 2017 13:56:15 +0100 |
parents | d8949733849d |
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 |