aboutsummaryrefslogtreecommitdiffstats
path: root/hostname-post
blob: 5c432e6d516f7724d8393db46bfe2af08c125736 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
#---------------------------------------------------------------
# Project         : Mandrakelinux
# Module          : s2u
# File            : hostname-post
# Version         : $Id$
# Author          : Frederic Lepied
# Created On      : Tue Jul  6 16:10:03 2004
# Purpose         : send a dbus message on hostname change to all
#                 running X11 dbus session.
#---------------------------------------------------------------

for f in `ls /tmp/dbus-*-xsession* 2> /dev/null`; do
    . $f
    dbus-send --type=method_call --dest=com.mandrakesoft.user.message /com/mandrakesoft/user com.mandrakesoft.user.message string:"Hostname: $1" &
done

# hostname-post ends here