~ubuntu-branches/ubuntu/oneiric/gdm3/oneiric

« back to all changes in this revision

Viewing changes to utils/gdm-safe-restart.in

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette
  • Date: 2010-03-25 20:02:20 UTC
  • Revision ID: james.westby@ubuntu.com-20100325200220-12cap62s6p304nuh
Tags: upstream-2.29.92
ImportĀ upstreamĀ versionĀ 2.29.92

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
PIDFILE=@GDM_PID_FILE@
 
4
if test '!' -f $PIDFILE ; then
 
5
        echo "$PIDFILE doesn't exist, perhaps GDM isn't running"
 
6
        exit 1
 
7
fi
 
8
echo "Not supported"
 
9