From a65531df2b8681a8ae72155cc429fa2a8dd270bc Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Wed, 29 Aug 2012 16:22:25 +0200 Subject: [PATCH] meta-systemd: systemd-systemctl-native: Also add support for WantedBy=*.service Right now there was only WantedBy=*.target, which prevented some services from beeing installed, which prevent them from running at boot. (From meta-openembedded rev: f0bb19138107f35c3c8bbc30ea01003bc028ff7e) Signed-off-by: Denis 'GNUtoo' Carikli Signed-off-by: Martin Jansa Signed-off-by: Patrick Ohly --- .../meta-systemd/recipes-core/systemd/systemd-systemctl-native.bb | 2 +- .../recipes-core/systemd/systemd-systemctl-native/systemctl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-openembedded/meta-systemd/recipes-core/systemd/systemd-systemctl-native.bb b/meta-openembedded/meta-systemd/recipes-core/systemd/systemd-systemctl-native.bb index 25ddbda..5940584 100644 --- a/meta-openembedded/meta-systemd/recipes-core/systemd/systemd-systemctl-native.bb +++ b/meta-openembedded/meta-systemd/recipes-core/systemd/systemd-systemctl-native.bb @@ -3,7 +3,7 @@ DESCRIPTION = "Wrapper to enable of systemd services" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" -PR = "r5" +PR = "r6" inherit native diff --git a/meta-openembedded/meta-systemd/recipes-core/systemd/systemd-systemctl-native/systemctl b/meta-openembedded/meta-systemd/recipes-core/systemd/systemd-systemctl-native/systemctl index 5c21e7f..d71c7ed 100755 --- a/meta-openembedded/meta-systemd/recipes-core/systemd/systemd-systemctl-native/systemctl +++ b/meta-openembedded/meta-systemd/recipes-core/systemd/systemd-systemctl-native/systemctl @@ -81,7 +81,7 @@ for service in $services; do wanted_by=$(grep WantedBy $ROOT/$service_file \ | sed 's,WantedBy=,,g' \ | tr ',' '\n' \ - | grep '\.target$') + | grep '\(\.target$\)\|\(\.service$\)') for r in $wanted_by; do echo "WantedBy=$r found in $service" -- 2.7.4