~ubuntu-branches/ubuntu/saucy/apache2/saucy

« back to all changes in this revision

Viewing changes to debian/config-mods/sick-hack-to-update-modules

  • Committer: Bazaar Package Importer
  • Author(s): Thom May
  • Date: 2004-10-13 19:46:10 UTC
  • Revision ID: james.westby@ubuntu.com-20041013194610-ccvqcz8vflh5zqrm
Tags: 2.0.50-12ubuntu4
Security Release. Patch from upstream for the following:
CAN-2004-0885SSLCypherSuite can be bypassed during renegotiation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
for path in /usr/lib/apache2/modules/*.so; do 
 
3
        module=$(echo $path|sed -e 's/.*mod_\(.*\).so/\1/');
 
4
        if [ ! -e ${module}.load ]; then 
 
5
                module_name=${module}_module;
 
6
                echo "LoadModule $module_name $path" > ${module}.load; 
 
7
        fi; 
 
8
done