annotate deploy/provision.d/090-perl-auth-module.sh @ 1621:3a510bf6a9bc

Merge from live branch
author Chris Cannam
date Fri, 13 Jul 2018 10:44:33 +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