Fixed typo in order to use the keyboard module for RHEL without systemd

This commit is contained in:
jle 2015-12-18 09:12:29 +01:00
parent 4044f3bb93
commit 7b72b3c52c

View File

@ -19,7 +19,7 @@ def __virtual__():
Only works with systemd or on supported POSIX-like systems
'''
if salt.utils.which('localectl') \
or __grains__['os_family'] in ('Redhat', 'Debian', 'Gentoo'):
or __grains__['os_family'] in ('RedHat', 'Debian', 'Gentoo'):
return True
return False