home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 March / PCWELT_3_2006.ISO / base / 05_common.mo / usr / sbin / login.radius < prev    next >
Encoding:
Text File  |  2004-02-26  |  502 b   |  25 lines

  1. #!/bin/sh
  2. #
  3. # $Id: login.radius,v 1.1 2002/01/22 16:03:02 dfs Exp $
  4. #
  5. # Copyright (C) 1998 Lars Fenneberg
  6. #
  7. # See the file COPYRIGHT for the respective terms and conditions. 
  8. # If the file is missing contact me at lf@elemental.net 
  9. # and I'll send you a copy.
  10. #
  11.  
  12. cat <<EOF
  13. This is the dummy login.radius script. If you want that this script
  14. does something useful you'll have to replace it.
  15.  
  16. The following RADIUS environment variables are set:
  17. EOF
  18.  
  19. set | egrep '^RADIUS_'
  20.  
  21. echo
  22. echo "Bye, bye."
  23.  
  24. exit 0
  25.