Re: Disable systemd-timesyncd.service in image
Damien LEFEVRE
Yes SYSTEMD_AUTO_ENABLE_${PN} doesn't apply to systemd recipe core services as they are not installed as separate packages. The default enable/disable service are defined in https://github.com/systemd/systemd/blob/master/presets/90-systemd.preset So do_configure_append() { sed -i -e "s/enable systemd-timesyncd.service/disable systemd-timesyncd.service/g" ${S}/presets/90-systemd.preset } does the trick Cheers, -Damien On Mon, Nov 23, 2020 at 10:42 PM Konrad Weihmann <kweihmann@...> wrote: The service is deployed with standard systemd package, which doesn't |
|