home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / TEDdesk / reloc.9 / $TED_DIR / config / Xsession.d / 0060.srcsysenv < prev   
Text File  |  1998-08-19  |  2KB  |  56 lines

  1. #!/bin/ksh
  2. # $Id: 0060.srcsysenv.src,v 1.1.1.1 1997/09/09 01:27:40 philip Exp $
  3. #####################################################################
  4. ###  File:              0060.srcsysenv
  5. ###
  6. ###  Default Location:  /usr/dt/config/Xsession.d/
  7. ###
  8. ###  Purpose:           Source system-defined environment variables
  9. ###
  10. ###  Description:
  11. ###                     This script is invoked by means of the Xsession file
  12. ###                     at user login.
  13. ###
  14. ###  Invoked by:        /usr/dt/bin/Xsession
  15. ###
  16. ###  Product:           @(#)TriTeal Enterprise Desktop
  17. ###
  18. ###  Note:
  19. ###
  20. ###    The /usr/dt/config/Xsession.d/0060.srcsysenv file is a
  21. ###    factory-default file and will be unconditionally overwritten upon
  22. ###    subsequent installation. To customize input method server startup
  23. ###    behavior, copy this file to the configuration directory,
  24. ###    /etc/dt/config/Xsession.d and customize that version
  25. ###    of the file.
  26. ###
  27. ###  Revision:          $Revision: 1.1.1.1 $
  28. ###
  29. ###  (c) Copyright 1995  TriTeal Corporation
  30. ###  (c) Copyright 1993, 1994 Hewlett-Packard Company
  31. ###  (c) Copyright 1993, 1994 International Business Machines Corp.
  32. ###  (c) Copyright 1993, 1994 Sun Microsystems, Inc.
  33. ###  (c) Copyright 1993, 1994 Novell, Inc.
  34. ###
  35. ###   @(#)TED Version: TED 4.2 Alpha 99-4200-00
  36. ###   @(#)TED FileVersion: 0060.srcsysenv: $Id: 0060.srcsysenv.src,v 1.1.1.1 1997/09/09 01:27:40 philip Exp $
  37. ###
  38. #####################################################################
  39.  
  40.  
  41. #
  42. # Source TIMEZONE
  43. #
  44. TZ_FILE=/etc/TIMEZONE
  45. if [ -f $TZ_FILE -a -r $TZ_FILE ]; then
  46.     . $TZ_FILE
  47. fi
  48. unset TZ_FILE
  49.  
  50.  
  51.  
  52.  
  53. ##########################         eof       #####################
  54.  
  55.  
  56.