Note: This is a public test instance of Red Hat Bugzilla. The data contained within is a snapshot of the live data so any changes you make will not be reflected in the production Bugzilla. Email is disabled so feel free to test any aspect of the site that you want. File any problems you find or give feedback at bugzilla.redhat.com.
Bug 173869 - new schemas don't seem to be picked up by running gconfd
Summary: new schemas don't seem to be picked up by running gconfd
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: GConf2
Version: rawhide
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Christopher Aillon
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks: FC5Blocker
TreeView+ depends on / blocked
 
Reported: 2005-11-22 00:21 UTC by Jeremy Katz
Modified: 2008-08-02 23:40 UTC (History)
4 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2007-01-08 19:07:53 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)
Have gconftool send a HUP to gconfd (573 bytes, patch)
2006-02-02 17:08 UTC, Toshio Kuratomi
no flags Details | Diff


Links
System ID Private Priority Status Summary Last Updated
GNOME Bugzilla 328697 0 None None None Never

Description Jeremy Katz 2005-11-22 00:21:27 UTC
Installing new schemas with --makefile-install-rule (eg, as part of a package
%post) don't seem to be picked up by running instances of gconfd-2.  First
noticed with gnome-power-manager but reproduced with a pretty trivial schema
file afterwards, so I don't think it has anything to do with the specific schema.

Comment 1 Ray Strode [halfline] 2006-01-11 17:08:06 UTC
Hey Jeremy,

So at one point, g-p-m had this:

%preun
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
gconftool-2 --makefile-uninstall-rule \
        %{_sysconfdir}/gconf/schemas/gnome-power-manager.schemas >/dev/null

which might manifest itself as the problem you're seeing here.  Do you think
that's what happened?

If you do:

$ gconftool-2 --recursive-unset /apps/gnome-power-manager
$ killall gconfd-2
$ gconftool-2 \
--direct --config-source=$(gconftool-2 --get-default-source) \
--makefile-uninstall-rule \
        /etc/gconf/schemas/gnome-power-manager.schemas 

then install the latest version of gnome-power-manager are you still seeing the
problem?


Comment 2 Jeremy Katz 2006-01-11 18:00:40 UTC
I was getting the same thing to happen, though, just with a foo.schema that set
/apps/foo/mykey

Comment 3 Christopher Aillon 2006-01-24 08:44:06 UTC
Note, that I added a hack around to the rhythmbox spec file.  When this bug is
fixed, that hack should be removed.

Comment 4 Mark McLoughlin 2006-01-26 07:40:11 UTC
If run as root, gconftool-2 --makefile-install-rule could do killall -HUP
gconfd-2 perhaps ...

(The problem was always there, but it's worse now with the merged subtree)

Comment 5 Mark McLoughlin 2006-01-26 09:15:52 UTC
Upstream:

  http://bugzilla.gnome.org/show_bug.cgi?id=328697

Comment 6 Toshio Kuratomi 2006-01-26 20:25:34 UTC
Fedoraproject Scriptlet Snippets page recommends running  "killall -HUP gconfd-2
|| :" after doing a --makefile-install-rule/--makefile-uninstall-rule::

http://www.fedoraproject.org/wiki/ScriptletSnippets#head-ff64cd482595764f672082d5a3b83e1fc22962e8

If gconftool-2 adds this internally, I'll note that the need for it has been
removed for FC5+.  The alternative would be Core packages installing gconf
schemas follow the advice to send a HUP in the rpm scriptlets.

Comment 7 Christopher Aillon 2006-02-01 23:02:31 UTC
Testing a patch now.  Taking.

Comment 8 Christopher Aillon 2006-02-02 03:05:50 UTC
Fixed in tomorrow's rawhide using patch from
http://cvs.mandriva.com/cgi-bin/cvsweb.cgi/SPECS/GConf2/GConf-2.8.1-reload.patch?rev=1.1&content-type=text/plain

Comment 9 Toshio Kuratomi 2006-02-02 16:58:39 UTC
Unless patch has changed on FC5, the patch needs to be updated.  The area that
it's updating has several sections that are very similar and the fuzz factor is
causing problems::

      gconf_engine_unref (conf);

      g_spawn_command_line_sync ("/usr/bin/killall -q -HUP " GCONF_SERVERDIR "/"
GCONFD, NULL, NULL, NULL, NULL);

      g_spawn_command_line_sync ("/usr/bin/killall -q -HUP " GCONF_SERVERDIR "/"
GCONFD, NULL, NULL, NULL, NULL);

      return retval;
    }

This is screwy enough it might be considered a patch bug....

I'll submit an updated patch in a moment.

Comment 10 Toshio Kuratomi 2006-02-02 17:08:47 UTC
Created attachment 124058 [details]
Have gconftool send a HUP to gconfd

Previous patch applies to the wrong section of code.  This patch applies one
section to the makefile-install code path and one to the makefile-uninstall
code.

Comment 11 Christopher Aillon 2006-02-02 17:25:15 UTC
Hah.  I did know that and created a new patch; I just uploaded the wrong one. 
Fixing.

Comment 12 Matthias Clasen 2006-02-15 15:24:22 UTC
Still seems broken in post-test3 rawhide.

I changed gnome-applets to include mini commander again, but 
when I updated the package, the schema did not get picked up.
manually installing the schema again did not help either.
restarting  gconfd did.

Comment 13 Ray Strode [halfline] 2006-02-15 19:05:37 UTC
Hi,

Chris says that he built updated packages into rawhide that may fix this
problem.  Closing... (but let's reopen if it the problem happens again).

Comment 14 Owen Taylor 2006-11-06 16:56:18 UTC
The handling in gconftool-2 was not working for me; on investigation
it turned out to be a bug/misfeature in killall, see bug 214214.

If bug 214214 isn't fixed, replacing 'killall /usr/libexec/gconfd-2'
with 'killall gconfd-2' would be advised.


Comment 15 David Eisenstein 2007-01-07 11:18:01 UTC
So does rstrode's fix of 6-Nov-2006 (e.g.,
http://www.redhat.com/archives/fedora-package-announce/2006-November/msg00151.html)
fix this problem?  Or is it still a bug?

Comment 16 Ray Strode [halfline] 2007-01-08 23:05:47 UTC
It's fixed, yea, thanks.


Note You need to log in before you can comment on or make changes to this bug.