~ubuntu-branches/ubuntu/dapper/freeradius/dapper-updates

« back to all changes in this revision

Viewing changes to debian/patches/02_document_actual_shared_secret_maximum_length.dpatch

  • Committer: Bazaar Package Importer
  • Author(s): Paul Hampson
  • Date: 2006-01-15 13:34:13 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060115133413-92geefww41y7hqi8
Tags: 1.1.0-1
* ReDebianise upstream tarball:
  - Deleted RFCs: 2243 2289 2433 2548 2618 2619 2620 2621 2716 2759 2809 2865
                  2866 2867 2868 2869 2882 2924 3162 3575 3576 3579 3580
                  draft-kamath-pppext-eap-mschapv2-00

* New FreeRADIUS modules marked stable by new upstream release
  - rlm_perl
  - rlm_sqlcounter
  - rlm_sql_log + radsqlrelay
  - rlm_otp (formerly rlm_x99_token, not built as it depends on OpenSSL)

* Remove upstream-integrated patches:
  - 02_EAP-SIM_doesnt_need_openssl
  - 03_X99_is_not_stable
  - 07_manpage_fixups
  - 09_use_crypth_if_we_have_it
  - 10_escape_entire_ldap_string
  - 11_dont_xlat_possibly_bad_usernames_in_bad_accounting_packets
  - 12_dialup_admin_various_fixes

* More dialup-admin fixes from Arve Seljebu
  - Fix redirects in dialup-admin pages on servers with
    register_globals turned off.
    Closes: #333704
  - HTTP form fields will always fail is_int, use in_numeric instead
    Closes: #335149
  - Created 12_more_dialup_admin_various_fixes

* Update to Policy 3.6.2.0
* Upgrade Debhelper support to V5
* Don't install the .in files with the examples
* Prefer libmysqlclient15-dev
  Closes: #343779
* Shared secrets can only be 31 characters long, note this in clients.conf
  - Created 02_document_actual_shared_secret_maximum_length
  Closes: 344606
* Added support for lsb-init functions

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh /usr/share/dpatch/dpatch-run
 
2
## 02_document_actual_shared_secret_maximum_length.dpatch by Paul Hampson <Paul.Hampson@anu.edu.au>
 
3
##
 
4
## All lines beginning with `## DP:' are a description of the patch.
 
5
## DP: Report correct manimum length for shared secrets -- buffer is 32 bytes
 
6
## DP: including the null.
 
7
 
 
8
@DPATCH@
 
9
diff -urNad freeradius-1.1.0~/raddb/clients.conf freeradius-1.1.0/raddb/clients.conf
 
10
--- freeradius-1.1.0~/raddb/clients.conf        2004-01-06 04:05:46.000000000 +1100
 
11
+++ freeradius-1.1.0/raddb/clients.conf 2006-01-15 04:41:20.000000000 +1100
 
12
@@ -30,7 +30,7 @@
 
13
        #  the NAS and FreeRADIUS.  You MUST change this secret from the
 
14
        #  default, otherwise it's not a secret any more!
 
15
        #
 
16
-       #  The secret can be any string, up to 32 characters in length.
 
17
+       #  The secret can be any string, up to 31 characters in length.
 
18
        #
 
19
        secret          = testing123
 
20