diff options
author | Ioan-Adrian Ratiu <adrian.ratiu@ni.com> | 2016-04-29 15:38:50 +0300 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-05-06 12:40:22 +0200 |
commit | 03071511d5e2a50e7bd6507a57d876b97a81bb4d (patch) | |
tree | ba6eebac71d93c99073629595e7a88514e882a58 /meta-multimedia/recipes-multimedia/sox | |
parent | 1bd027eba40546dcf1eaa02c518cad3c0495b34f (diff) | |
download | meta-openembedded-contrib-03071511d5e2a50e7bd6507a57d876b97a81bb4d.tar.gz |
syslog-ng.inc: fix prerm script & class includes
The order of class includes is very important because it's the order in
which classes are evaluated. Both update-rc.d and update-alternatives
write to the prerm script, so the class order decides the script code
ordering. As they are now, prerm is:
#!/bin/sh
update-alternatives --remove syslog-init /etc/init.d/syslog.syslog-ng
if [ -z "$D" ]; then
/etc/init.d/syslog stop
fi
This causes errors because when syslog-ng is the only alternative it is
removed and then the script tries to stop it (No such file or directory)
but even if there are other alternatives, the script tries to stop
something other than syslog-ng which was removed.
By reversing the include order, prerm gets generated correctly and it
tries to stop syslog-ng before removing it:
if [ -z "$D" ]; then
/etc/init.d/syslog stop
fi
update-alternatives --remove syslog-init /etc/init.d/syslog.syslog-ng
Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-multimedia/recipes-multimedia/sox')
0 files changed, 0 insertions, 0 deletions