From: ChenQi <Qi.Chen@windriver.com>
To: <openembedded-core@lists.openembedded.org>
Subject: Re: [PATCH 1/4] packaging: allow globs in CONFFILES
Date: Tue, 23 Dec 2014 16:44:26 +0800 [thread overview]
Message-ID: <54992B6A.7060608@windriver.com> (raw)
In-Reply-To: <20141223062542.GA9157@ad.chargestorm.se>
[-- Attachment #1: Type: text/plain, Size: 6399 bytes --]
On 12/23/2014 02:25 PM, Anders Darander wrote:
> * ChenQi <Qi.Chen@windriver.com> [141223 02:58]:
>
>> On 12/19/2014 02:42 PM, Mike Looijmans wrote:
>>> On 12/19/2014 07:21 AM, Chen Qi wrote:
>>>> ...
>>>> As almost all files under /etc are basically configuration files, we
>>>> provide a default value for CONFFILES.
>>>> CONNFFILES = "${sysconfdir}"
>>> This is going to hurt a lot of recipes. Please do not set this.
> Definitely true!
>
>>> The default has always been that CONFFILES is empty. I see no reason
>>> whatsoever to suddenly change this.
>>>> In this way, we don't need to modify every recipe to set the
>>>> CONFFILES variable. Of course, setting CONFFILES in recipes take
>>>> precedence over the CONFFILES. For example, if the recipe author
>>>> decides that package A should only treat files under
>>>> ${sysconfdir}/default/ as config files, he/she can write like this.
>>>> CONFFILES_A = "${sysconfdir}/default"
>>>> The above situation should not be common. As according to FHS, the
>>>> /etc directory is a place for all system related configuration
>>>> files.
> No, similar lines will be required for quite a few recipes...
>
>>> FHS may have written that somewhere, but if you just take a quick
>>> look at what is in /etc/, you'll find that actual configuration files
>>> are quite rare, but there are tons of scripts and distro related
>>> files there. Whether or not a file there is supposed to be edited by
>>> the end-user is something of a distro decision.
>>> Also, "configuration file" does not necessarily mean that the USER is
>>> in control. A configuration file may also simply distinguish machine
>>> capabilities or software features.
>>> We'll end up having to patch hundreds of recipes with a CONFFILES=""
>>> or similar line.
>> Most files under /etc are configuration files. If we don't default
>> CONFFILES to ${sysconfdir}, then we have to patch a lot of recipes
>> with CONFFILES_xxx = "xxxx" lines.
> Well, there are a lot of those configuration files, that only the
> distribution will care about. Especially if we're talking embedded
> devices.
>
>> The fact is that when people write recipes, they often forget about
>> CONFFILES. The typical example is the shadow recipe. And I can easily
>> give you more examples.
> This patch won't help this, it just shifts everything 180 degrees
> around. Now we have to explicitly remove a number of files from
> CONFFILES in a number of packages; which obviously is something that
> people will forget...
>
>> And it's not uncommon that people forget to check CONFFILES when they
>> update the recipe. When the recipe is updated to a new version, it's
>> possible that the CONFFILES should change. The typical example is the
>> systemd recipe.
>> *The bad effect of the above? On-target package upgrades override user
>> changes. That's a really annoying problem, isn't it?* Users of OE
>> based projects have complained about this. There were patches on OE
>> which fixed several recipes. But the solution doesn't scale.
> I tend to agree with Mike here. It's better to explicitly add files (or
> directories) in each recipe, as that will make it more obvious which
> files won't get overwritten during a package upgrade. Sure, short-term
> this might mean more patches (I'm nt really sure of the status regarding
> this).
>
> But more importantly, it will keep the determinism and explicit marking
> of CONFFILES. Again, remember that we're primarily talking about
> embedded devices here, where the distibution/distributor quite likely
> need some more control, compared to a regular desktop distribution.
Hi Anders,
I read your comments carefully and thought for a while. Sorry but I
still insist my opinion.
Please see reasons below.
First of all, I don't think this issue has anything to do with the
'embedded devices' or 'desktop distribution' thing. The two concepts are
too large and should not become the reason. Some desktop distributions
support image based upgrades. Many small embedded devices should only do
image based upgrades. Most desktop distributions support package based
upgrades, some embedded devices should also support it.
What we are talking here is on-target package upgrades. If the
distributor wants to have full control, then its users/customers should
be suggested to only do image-based upgrades.
But now, let's just focus on package based upgrades.
We have to be aware that package managers are designed to handle config
files specially. Why they are designed to do so? Because users should
not be surprised.
Take 'rpm' as an example.
File marked as Changed in update RPM? On-disk file untouched On-disk
file edited
[default] No File from update File from update
Yes File from update File from update
%config No File from update Edited file
Yes File from update File from update, edited file in .rpmsave
%config(noreplace) No File from update Edited file
Yes File from update Edited file, file from the update in .rpmnew
You can see that it's pretty reasonable.
The problem we have now is that if the user edit a configuration file
(e.g. /etc/login.defs), the file will still be overridden by upgrades
even if the file doesn't change in the new package.
Now the focus is whether we should take ${sysconfdir} as the default
value for CONFFILES.
I strongly think we should. Why? We can easily make use of the power of
package managers for dealing with configuration files.
If we don't do so, very likely the user changes would be overridden
silently without informing the user.
This should not happen, especially when the files are under /etc.
Otherwise we will get angry users or customers. How are we gonna explain
to them? I don't 'embedded device' could be a satisfactory reason.
Please see the number below. Hope this will reveal the situation of
CONFFILES in OE.
chenqi@pek-hostel-deb01:~/poky [0] $ find meta meta-openembedded/ -name
"*.bb" | wc -l
1897
chenqi@pek-hostel-deb01:~/poky [0] $ find meta meta-openembedded/ -name
"*.bb" -o -name "*.inc" | xargs grep CONFFILES | wc -l
86
Best Regards,
Chen Qi
>> The patchset is an effort to change this situation.
> I don't think we'll gain that much from this patch; rather we'll
> loose...
>
> Cheers,
> Anders
>
[-- Attachment #2: Type: text/html, Size: 10671 bytes --]
next prev parent reply other threads:[~2014-12-23 8:44 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-12-19 6:21 [PATCH V2 0/4] Change the way of CONFFILES handling Chen Qi
2014-12-19 6:21 ` [PATCH 1/4] packaging: allow globs in CONFFILES Chen Qi
2014-12-19 6:42 ` Mike Looijmans
2014-12-23 1:56 ` ChenQi
2014-12-23 6:25 ` Anders Darander
2014-12-23 8:44 ` ChenQi [this message]
2014-12-19 6:21 ` [PATCH 2/4] package_manager.py: user 'purge' instead of 'remove' in case of deb Chen Qi
2014-12-19 6:21 ` [PATCH 3/4] update-rc.d: use '-f' option in updatercd_postrm Chen Qi
2014-12-19 6:21 ` [PATCH 4/4] useradd.bbclass: avoid do_rootfs error for debian package backend Chen Qi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=54992B6A.7060608@windriver.com \
--to=qi.chen@windriver.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox