~ubuntu-branches/ubuntu/intrepid/xserver-xgl/intrepid

« back to all changes in this revision

Viewing changes to Xprint/etc/Xsession.d/cde_xsessiond_xprint.sh

  • Committer: Bazaar Package Importer
  • Author(s): Matthew Garrett
  • Date: 2006-02-13 14:21:43 UTC
  • Revision ID: james.westby@ubuntu.com-20060213142143-mad6z9xzem7hzxz9
Tags: upstream-7.0.0
ImportĀ upstreamĀ versionĀ 7.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh 
 
2
#####################################################################
 
3
###  File:              0018.xprint
 
4
###
 
5
###  Default Location:  /usr/dt/config/Xsession.d/
 
6
###
 
7
###  Purpose:           Setup Xprint env vars
 
8
###                     
 
9
###  Description:       This script is invoked by means of the Xsession file
 
10
###                     at user login. 
 
11
###
 
12
###  Invoked by:        /usr/dt/bin/Xsession
 
13
###
 
14
###  (c) Copyright 2003-2004 Roland Mainz <roland.mainz@nrubsig.org>
 
15
###
 
16
###  please send bugfixes or comments to http://xprint.mozdev.org/
 
17
###
 
18
#####################################################################
 
19
 
 
20
 
 
21
#
 
22
# Obtain list of Xprint servers
 
23
#
 
24
 
 
25
if [ -f "/etc/init.d/xprint" ] ; then
 
26
  XPSERVERLIST="`/bin/sh /etc/init.d/xprint get_xpserverlist`"
 
27
  export XPSERVERLIST
 
28
fi
 
29
 
 
30
##########################         eof       #####################