Disable systemd-timesyncd.service in image


Damien LEFEVRE
 

Hi,

I would like to have systemd-timesyncd.service as part of an image but have it disabled by default.

Right now it is enabled by default which causes some issues.

I've tried systemd_%.bbappend

do_install_append() { 
    rm "$D/etc/systemd/system/dbus-org.freedesktop.timesync1.service"
    rm "$D/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service"
}

but those symlinks are not part of the package.

I've tried this to remove the link during the package deployment during do_rootfs
pkg_postinst_${PN}_append() {
    #!/bin/sh -e
    rm "$D/etc/systemd/system/dbus-org.freedesktop.timesync1.service"
    rm "$D/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service"
}

But at this stage the links still don't exist.

Which package is actually responsible for enabling the default services / creating the symlinks? How can we turn some of them off while keeping them in the image?

Thanks,
-Damien

Join {yocto@lists.yoctoproject.org to automatically receive all group messages.