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

« back to all changes in this revision

Viewing changes to debian/libapr0.postinst

  • 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/sh
 
2
set -e
 
3
 
 
4
#make a symlink for libapr.so.0
 
5
[ ! -f /usr/lib/libapr.so.0 ] && ln -s /usr/lib/libapr-0.so.0 /usr/lib/libapr.so.0
 
6
 
 
7
#make a symlink for libaprutil.so.0
 
8
[ ! -f /usr/lib/libaprutil.so.0 ] && ln -s /usr/lib/libaprutil-0.so.0 /usr/lib/libaprutil.so.0
 
9
 
 
10
#DEBHELPER#
 
11
 
 
12
exit 0