blob: 9c646424225a5e8f601f020db2665f1e18494579 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# (c) 2005-2008 Mandriva SA
# to be sourced
export LOCK=/var/run/harddrake-notify-x11-free-driver-switch;
if [ -f $LOCK ]; then
/usr/share/harddrake/notify-x11-free-driver-switch
rm -f $LOCK;
fi
|