diff --git a/library/system/service b/library/system/service index ed5712c09f9..caea023bb14 100644 --- a/library/system/service +++ b/library/system/service @@ -325,7 +325,7 @@ class Service(object): if len(rcarray) >= 1 and '=' in rcarray[0]: (key, value) = rcarray[0].split("=", 1) if key == self.rcconf_key: - if value == self.rcconf_value: + if value.upper() == self.rcconf_value: # Since the proper entry already exists we can stop iterating. changed = False break