cc6ul: vsftpd-cert: increase init priority to ensure certificates generation

The vsftpd-cert init script was previously starting too late,
causing vsftpd to start before the certificates were generated.
The priority has been increased (to 70) so that vsftpd-cert
runs earlier during boot.

Signed-off-by: Francisco Gil <francisco.gilmartinez@digi.com>
This commit is contained in:
Francisco Gil 2025-07-01 13:27:36 +02:00
parent 5d11be4d2b
commit d3e6f8648b
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ FILES:${PN}-cert = " \
INITSCRIPT_PACKAGES += "${@bb.utils.contains('PACKAGECONFIG', 'openssl', '${PN}-cert', '', d)}"
INITSCRIPT_NAME:${PN}-cert = "vsftpd-cert"
INITSCRIPT_PARAMS:${PN}-cert = "start 99 3 5 . stop 20 0 1 2 6 ."
INITSCRIPT_PARAMS:${PN}-cert = "start 70 3 5 . stop 20 0 1 2 6 ."
SYSTEMD_PACKAGES += "${@bb.utils.contains('PACKAGECONFIG', 'openssl', '${PN}-cert', '', d)}"
SYSTEMD_SERVICE:${PN}-cert = "vsftpd-cert.service"