~ubuntu-branches/ubuntu/utopic/desktop-profiles/utopic-proposed

« back to all changes in this revision

Viewing changes to profile-snippet

  • Committer: Bazaar Package Importer
  • Author(s): Bart Cornelis (cobaco)
  • Date: 2006-10-06 11:28:11 UTC
  • mfrom: (1.1.3 edgy)
  • Revision ID: james.westby@ubuntu.com-20061006112811-jdx0y44bv2kz07pb
Tags: 1.4.13
* fixed small mistake in for_each_requirement function of listingmodule
  (triggered for profiles multiple shell-command requirements)
* Updated French translation by Jean-Luc Coulon (Closes: #387015)
* Adapted man page to unclude reference to /usr/sbin/path2listing for gconf
* Removed medium priority note pointing gconf users to the path2listing
  script, that info is now in the man-page and the README (Closes: #388884)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
3
# Make sure that people starting graphical clients over SSH get the correct
 
4
# settings, i.e. make sure to run the profile activation script
 
5
############################################################################
 
6
 
 
7
# testing SSH_CLIENT as the woody ssh doesn't set SSH_CONNECTION
 
8
# also testing SSH_CONNECTION as the current ssh manpage no longer mentions
 
9
# SSH_CLIENT, so it appears that variable is being phased out.
 
10
if ( ( (test -n "${SSH_CLIENT}") || (test -n "${SSH_CONNECTION}") ) && \
 
11
     (test -n "${DISPLAY}") ); then
 
12
  . /etc/X11/Xsession.d/20desktop-profiles_activateDesktopProfiles
 
13
fi;