mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
samba: fix typo distinguishing between plain sysv init and lsb init
During fix for distinguishing between lsb flavoured sysv init and pure, on the rocks version, author introduced a typo. Signed-off-by: Jens Rehsack <sno@netbsd.org> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
This commit is contained in:
committed by
Joe MacDonald
parent
0db903b44c
commit
9546714d24
@@ -117,7 +117,7 @@ do_install_append() {
|
||||
install -m 0755 packaging/LSB/samba.sh ${D}${sysconfdir}/init.d
|
||||
update-rc.d -r ${D} samba.sh start 20 3 5 .
|
||||
update-rc.d -r ${D} samba.sh start 20 0 1 6 .
|
||||
elif ${@bb.utils.contains('PACKAGECONFIG', 'lsb', 'true', 'false', d)}; then
|
||||
elif ${@bb.utils.contains('PACKAGECONFIG', 'sysv', 'true', 'false', d)}; then
|
||||
install -d ${D}${sysconfdir}/init.d
|
||||
install -m 0755 packaging/sysv/samba.init ${D}${sysconfdir}/init.d/samba.sh
|
||||
update-rc.d -r ${D} samba.sh start 20 3 5 .
|
||||
|
||||
Reference in New Issue
Block a user