Mercurial > hg > soundsoftware-site
annotate deploy/provision.d/090-perl-auth-module.sh @ 1628:9c5f8e24dadc live tip
Quieten this cron script
author | Chris Cannam |
---|---|
date | Tue, 25 Aug 2020 11:38:49 +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 |