home *** CD-ROM | disk | FTP | other *** search
Korn shell script | 1998-08-19 | 1.6 KB | 56 lines |
- #!/bin/ksh
- # $Id: 0060.srcsysenv.src,v 1.1.1.1 1997/09/09 01:27:40 philip Exp $
- #####################################################################
- ### File: 0060.srcsysenv
- ###
- ### Default Location: /usr/dt/config/Xsession.d/
- ###
- ### Purpose: Source system-defined environment variables
- ###
- ### Description:
- ### This script is invoked by means of the Xsession file
- ### at user login.
- ###
- ### Invoked by: /usr/dt/bin/Xsession
- ###
- ### Product: @(#)TriTeal Enterprise Desktop
- ###
- ### Note:
- ###
- ### The /usr/dt/config/Xsession.d/0060.srcsysenv file is a
- ### factory-default file and will be unconditionally overwritten upon
- ### subsequent installation. To customize input method server startup
- ### behavior, copy this file to the configuration directory,
- ### /etc/dt/config/Xsession.d and customize that version
- ### of the file.
- ###
- ### Revision: $Revision: 1.1.1.1 $
- ###
- ### (c) Copyright 1995 TriTeal Corporation
- ### (c) Copyright 1993, 1994 Hewlett-Packard Company
- ### (c) Copyright 1993, 1994 International Business Machines Corp.
- ### (c) Copyright 1993, 1994 Sun Microsystems, Inc.
- ### (c) Copyright 1993, 1994 Novell, Inc.
- ###
- ### @(#)TED Version: TED 4.2 Alpha 99-4200-00
- ### @(#)TED FileVersion: 0060.srcsysenv: $Id: 0060.srcsysenv.src,v 1.1.1.1 1997/09/09 01:27:40 philip Exp $
- ###
- #####################################################################
-
-
- #
- # Source TIMEZONE
- #
- TZ_FILE=/etc/TIMEZONE
- if [ -f $TZ_FILE -a -r $TZ_FILE ]; then
- . $TZ_FILE
- fi
- unset TZ_FILE
-
-
-
-
- ########################## eof #####################
-
-
-