diff options
author | Thierry N <thierryn1 at hispeed dot ch> | 2009-09-15 20:48:33 +0200 |
---|---|---|
committer | Thierry N <thierryn1 at hispeed dot ch> | 2009-09-15 20:48:33 +0200 |
commit | 7fba1e8ebe39a0f5d2f6332584cf14d5370497e8 (patch) | |
tree | a8cb9fe9b1c8cbf7a26087ad891f190bd2b8b08e /extra/gnome-keyring/post-install | |
parent | 4e39803adb1def578bc88c9e67082279d7fe54cf (diff) | |
download | nutyx-extra-7fba1e8ebe39a0f5d2f6332584cf14d5370497e8.tar.gz nutyx-extra-7fba1e8ebe39a0f5d2f6332584cf14d5370497e8.tar.bz2 nutyx-extra-7fba1e8ebe39a0f5d2f6332584cf14d5370497e8.tar.xz nutyx-extra-7fba1e8ebe39a0f5d2f6332584cf14d5370497e8.zip |
Ajout gnome-keyring#2.26.3-1
Diffstat (limited to 'extra/gnome-keyring/post-install')
-rwxr-xr-x | extra/gnome-keyring/post-install | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/extra/gnome-keyring/post-install b/extra/gnome-keyring/post-install new file mode 100755 index 000000000..8370ad96e --- /dev/null +++ b/extra/gnome-keyring/post-install @@ -0,0 +1,18 @@ +#!/bin/sh +port=gnome-keyring +# gconf schemas +SCHEMAS="`pkginfo -l $port | grep etc/gconf/schemas/.*\.schemas$`" + +for SCHEMA in $SCHEMAS +do + export GCONF_CONFIG_SOURCE=`/usr/bin/gconftool-2 --get-default-source` + /usr/bin/gconftool-2 --makefile-install-rule /$SCHEMA > /dev/null +done + +# reload gconf caches +if [ ! -z "`pidof gconfd-2`" ] +then + killall -HUP gconfd-2 > /dev/null +fi + +# End of file |