servicescfg: fix typo

This commit is contained in:
udeved 2016-09-23 22:37:23 +02:00
parent 74c2090ebc
commit 18f4b6e50c

View File

@ -51,7 +51,7 @@ class ServicesController:
if dm == "lightdm": if dm == "lightdm":
self.setExpression('s|^.*minimum-vt=.*|minimum-vt=7|', "/etc/lightdm/lightdm.conf") self.setExpression('s|^.*minimum-vt=.*|minimum-vt=7|', "/etc/lightdm/lightdm.conf")
self.setExpression('s|pam_systemd.so|pam_ck_connector.so nox11|', "/etc/pam.d/lightdm-greeter") self.setExpression('s|pam_systemd.so|pam_ck_connector.so nox11|', "/etc/pam.d/lightdm-greeter")
if exist(join(self.root, "etc/pulse/client.conf")): if exists(join(self.root, "etc/pulse/client.conf")):
self.setExpression('s|autospawn = no|autospawn = yes|', "/etc/pulse/client.conf") self.setExpression('s|autospawn = no|autospawn = yes|', "/etc/pulse/client.conf")
def update(self, action, state): def update(self, action, state):