To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / deploy / provision.d / 090-perl-auth-module.sh @ 1605:18643ab36008

History | View | Annotate | Download (326 Bytes)

1 1577:e38eee2e1d47 Chris
#!/bin/bash
2
3
set -e
4
5 1589:94669513c53c Chris
# Install the Apache mod_perl module used for hg repo access control
6
7 1577:e38eee2e1d47 Chris
if [ ! -f /usr/local/lib/site_perl/Apache/Authn/SoundSoftware.pm ]; then
8
    mkdir -p /usr/local/lib/site_perl/Apache/Authn/
9 1589:94669513c53c Chris
    cp /var/www/code/extra/soundsoftware/SoundSoftware.pm \
10
       /usr/local/lib/site_perl/Apache/Authn/
11 1577:e38eee2e1d47 Chris
fi