aboutsummaryrefslogtreecommitdiff
path: root/xorg-server/hw/xprint/etc/Xsession.d/92xprint-xpserverlist
blob: 60d964a341d07080c0368707a1d736282b413361 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/sh 
#####################################################################
###  File:              92xprint-xpserverlist
###
###  Default Location:  /etc/X11/Xsession.d/
###
###  Purpose:           Setup Xprint env vars
###                     
###  Description:       This script is invoked by means of the Xsession file
###                     at user login. 
###
###  Invoked by:        /etc/X11/Xsession
###
###  (c) Copyright 2003-2004 Roland Mainz <roland.mainz@nrubsig.org>
###
###  please send bugfixes or comments to https://bugs.freedesktop.org
###
#####################################################################


#
# Obtain list of Xprint servers
#

if [ -x "/etc/init.d/xprint" ] ; then
  XPSERVERLIST="`/etc/init.d/xprint get_xpserverlist`"
  export XPSERVERLIST
fi

##########################         eof       #####################