mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-09 11:58:05 +02:00
16 lines
367 B
Bash
16 lines
367 B
Bash
#
|
|
# /etc/profile.d/xprint.sh
|
|
#
|
|
# Copyright (c) 2002-2004 by Roland Mainz <roland.mainz@nrubsig.org>
|
|
# please send bugfixes or comments to http://xprint.mozdev.org/
|
|
|
|
#
|
|
# Obtain list of Xprint servers
|
|
#
|
|
|
|
if [ -f "/etc/init.d/xprint" ] ; then
|
|
XPSERVERLIST="`/bin/sh /etc/init.d/xprint get_xpserverlist`"
|
|
export XPSERVERLIST
|
|
fi
|
|
|
|
# /etc/profile.d/xprint.sh ends here.
|