[displaymanager] Fix call in LightDM code

- The parameter list was wrong, and could never have worked
   (apparently noone mixes LightDM with basic setup, even though
   it's one of the few with basic_setup()).
 - Shorten some lines.
This commit is contained in:
Adriaan de Groot 2018-08-21 07:31:46 -04:00
parent 858c959285
commit c3219a4905

View File

@ -541,13 +541,9 @@ class DMlightdm(DisplayManager):
] ]
) )
libcalamares.utils.target_env_call('passwd', '-l', 'lightdm') libcalamares.utils.target_env_call(['passwd', '-l', 'lightdm'])
libcalamares.utils.target_env_call( libcalamares.utils.target_env_call(['chown', '-R', 'lightdm:lightdm', '/run/lightdm'])
['chown', '-R', 'lightdm:lightdm', '/run/lightdm'] libcalamares.utils.target_env_call(['chmod', '+r' '/etc/lightdm/lightdm.conf'])
)
libcalamares.utils.target_env_call(
['chmod', '+r' '/etc/lightdm/lightdm.conf']
)
def desktop_environment_setup(self, default_desktop_environment): def desktop_environment_setup(self, default_desktop_environment):
os.system( os.system(