Codebase list krb5-auth-dialog / debian/3.12.0-1 examples / destroy-ccache.py
debian/3.12.0-1

Tree @debian/3.12.0-1 (Download .tar.gz)

destroy-ccache.py @debian/3.12.0-1raw · history · blame

1
2
3
4
5
6
7
8
import dbus

bus = dbus.SessionBus()
ka = bus.get_object('org.gnome.KrbAuthDialog',
                    '/org/gnome/KrbAuthDialog')
ret = ka.destroyCCache(dbus_interface='org.gnome.KrbAuthDialog')
if not ret:
    print >>sys.stderr, "Could not destroy credentials cache"