Your message dated Tue, 14 Apr 2020 02:47:15 +0000 with message-id <[email protected]> and subject line Bug#956610: Removed package(s) from unstable has caused the Debian Bug report #559205, regarding desktop-profiles cannot apply gconf setting correctly (mandatory and default) to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 559205: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=559205 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: desktop-profiles When I apply GCONF profiles via desktop-profiles the script cannot set $DEFAULTS_PATH. It always only set $MANDATORY_PATH. I suggest the following patch to make it verify the directory name for applying the patch. Thanks === modified file '20desktop-profiles_activateDesktopProfiles' --- 20desktop-profiles_activateDesktopProfiles 2009-11-25 20:51:41 +0000 +++ 20desktop-profiles_activateDesktopProfiles 2009-12-02 19:26:20 +0000 @@ -301,17 +301,23 @@ # see if there's actually anyting to add, if so create pathfiles and fill them cat $GCONF_FILE | while read LINE; do # user gconf source should be included by system-wide path already - if (test "$LINE" != 'xml:readwrite:$(HOME)/.gconf'); then - if (test $INCLUDED_HOME = false); then - # add configuration source - echo $LINE >> "$MANDATORY_PATH"; - else - # add configuration source - echo $LINE >> "$DEFAULTS_PATH"; - fi; - else - INCLUDED_HOME=true; - fi + if (echo "$LINE" |grep "mandatory"); then + echo $LINE >> "$MANDATORY_PATH"; + elif (echo "$LINE" |grep "default"); then + echo $LINE >> "$DEFAULTS_PATH"; + fi + +# if (test "$LINE" != 'xml:readwrite:$(HOME)/.gconf'); then +# if (test $INCLUDED_HOME = false); then +# # add configuration source +# echo $LINE >> "$MANDATORY_PATH"; +# else +# # add configuration source +# echo $LINE >> "$DEFAULTS_PATH"; +# fi; +# else +# INCLUDED_HOME=true; +# fi done; # get rid of temp files and variables if we don't use them Marc GariƩpy
--- End Message ---
--- Begin Message ---Version: 1.4.31+rm Dear submitter, as the package desktop-profiles has just been removed from the Debian archive unstable we hereby close the associated bug reports. We are sorry that we couldn't deal with your issue properly. For details on the removal, please see https://bugs.debian.org/956610 The version of this package that was in Debian prior to this removal can still be found using http://snapshot.debian.org/. Please note that the changes have been done on the master archive and will not propagate to any mirrors until the next dinstall run at the earliest. This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing [email protected]. Debian distribution maintenance software pp. Scott Kitterman (the ftpmaster behind the curtain)
--- End Message ---

