To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / deploy / provision.d / 090-perl-auth-module.sh @ 1612:2496b955f638
History | View | Annotate | Download (326 Bytes)
| 1 |
#!/bin/bash |
|---|---|
| 2 |
|
| 3 |
set -e |
| 4 |
|
| 5 |
# Install the Apache mod_perl module used for hg repo access control |
| 6 |
|
| 7 |
if [ ! -f /usr/local/lib/site_perl/Apache/Authn/SoundSoftware.pm ]; then |
| 8 |
mkdir -p /usr/local/lib/site_perl/Apache/Authn/ |
| 9 |
cp /var/www/code/extra/soundsoftware/SoundSoftware.pm \ |
| 10 |
/usr/local/lib/site_perl/Apache/Authn/ |
| 11 |
fi |
| 12 |
|