diff options
author | William Jon McCann <jmccann@redhat.com> | 2008-07-22 03:37:36 +0000 |
---|---|---|
committer | William Jon McCann <mccann@src.gnome.org> | 2008-07-22 03:37:36 +0000 |
commit | 09203b94d3c658013d043d57c4855e29c90f3754 (patch) | |
tree | bef09d3534562c2dcef4295657c68144e1275556 /utils | |
parent | aacfac4ba9cb8672c0c6264b538d9a5339bc1c51 (diff) | |
download | gdm-09203b94d3c658013d043d57c4855e29c90f3754.tar.gz |
Don't signal the gdm process with HUP and USR1 since they don't work.
2008-07-21 William Jon McCann <jmccann@redhat.com>
* utils/gdm-restart.in:
* utils/gdm-safe-restart.in:
Don't signal the gdm process with HUP and USR1 since
they don't work.
svn path=/trunk/; revision=6327
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/gdm-restart.in | 3 | ||||
-rwxr-xr-x | utils/gdm-safe-restart.in | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/utils/gdm-restart.in b/utils/gdm-restart.in index db1d634b..4bc91079 100755 --- a/utils/gdm-restart.in +++ b/utils/gdm-restart.in @@ -6,4 +6,5 @@ if test '!' -f $PIDFILE ; then exit 1 fi # exec the kill to get the correct return code -exec kill -HUP `cat $PIDFILE` +echo "Not supported" + diff --git a/utils/gdm-safe-restart.in b/utils/gdm-safe-restart.in index 8b75a97f..bccf5a31 100755 --- a/utils/gdm-safe-restart.in +++ b/utils/gdm-safe-restart.in @@ -5,5 +5,5 @@ if test '!' -f $PIDFILE ; then echo "$PIDFILE doesn't exist, perhaps GDM isn't running" exit 1 fi -# exec the kill to get the correct return code -exec kill -USR1 `cat $PIDFILE` +echo "Not supported" + |