File fix-is-enabled.patch of Package systemd.1408
From c971700e41e0ac9883ab0744921b79dd396170dc Mon Sep 17 00:00:00 2001
From: Michal Schmidt <mschmidt@redhat.com>
Date: Wed, 14 Dec 2011 22:23:56 +0100
Subject: [PATCH] systemctl: fix typo in 'is-enabled'
It prevented the action from working without dbus.
---
src/systemctl.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Index: systemd-37/src/systemctl.c
===================================================================
--- systemd-37.orig/src/systemctl.c
+++ systemd-37/src/systemctl.c
@@ -4984,7 +4984,7 @@ static int systemctl_main(DBusConnection
* enable/disable */
if (!streq(verbs[i].verb, "enable") &&
!streq(verbs[i].verb, "disable") &&
- !streq(verbs[i].verb, "is-enable") &&
+ !streq(verbs[i].verb, "is-enabled") &&
!streq(verbs[i].verb, "reenable") &&
!streq(verbs[i].verb, "preset") &&
!streq(verbs[i].verb, "mask") &&