aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Domenech Goulart <mario@ossystems.com.br>2012-05-14 13:48:23 +0000
committerKoen Kooi <koen@dominion.thruhere.net>2012-05-14 16:01:58 +0200
commitfa7187883442441467087c3a954f9f40ee516d78 (patch)
tree145f782c60cdf28080691c98123e48c1ef0a1256
parente08448f5f542ffd2d648e32d43c632d8bee5699a (diff)
downloadmeta-openembedded-contrib-fa7187883442441467087c3a954f9f40ee516d78.tar.gz
systemd-systemctl-native: fixed systemctl wrapper's `disable' action
Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
-rwxr-xr-xmeta-oe/recipes-core/systemd/systemd-systemctl-native/systemctl4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-core/systemd/systemd-systemctl-native/systemctl b/meta-oe/recipes-core/systemd/systemd-systemctl-native/systemctl
index c4a0a3fade..6e7a05d349 100755
--- a/meta-oe/recipes-core/systemd/systemd-systemctl-native/systemctl
+++ b/meta-oe/recipes-core/systemd/systemd-systemctl-native/systemctl
@@ -68,8 +68,8 @@ for service in $services; do
ln -s $service_file $ROOT/etc/systemd/system/$r.wants
echo "Enabled $service for $wanted_by."
else
- rm -f $ROOT/etc/systemd/system/$r.wants/$service_file
- rmdirs -p $ROOT/etc/systemd/system/$r.wants
+ rm -f $ROOT/etc/systemd/system/$r.wants/$service
+ rmdir --ignore-fail-on-non-empty -p $ROOT/etc/systemd/system/$r.wants
echo "Disabled $service for $wanted_by."
fi
done