Finding Out The Apache-Subversion Connector Version
When troubleshooting Crowd-Apache-Subversion integration, you may want to find out the current Apache/Subversion Connector version being used.
To check the connector version take the following steps:
1. Find out where the components were installed:
$ find `perl -e 'print "@INC"'` -name '*.pm' -print |grep CrowdAuth
/usr/local/share/perl/5.10.0/Apache/CrowdAuth.pm
/usr/local/share/perl/5.10.0/Apache/CrowdAuthz.pm
2. Run the following command to parse the component version from the files:
$ grep \$VERSION /usr/local/share/perl/5.10.0/Apache/CrowdAuth.pm
our $VERSION = '1.2.3';
Severity |
Medium |
---|
Last modified on Nov 21, 2012
Powered by Confluence and Scroll Viewport.