mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 08:52:21 +03:00
gnome user list configured
This commit is contained in:
parent
c5c96998e6
commit
6fc6f7e88c
1 changed files with 14 additions and 15 deletions
|
@ -139,25 +139,24 @@ class Registration:
|
||||||
self.logger.info("lightdm.conf has been configured.")
|
self.logger.info("lightdm.conf has been configured.")
|
||||||
|
|
||||||
if self.desktop_env == "gnome":
|
if self.desktop_env == "gnome":
|
||||||
pardus_gnome_path = "/etc/gdm3/greeter.dconf-default"
|
pardus_gnome_path = "/etc/gdm3/greeter.dconf-defaults"
|
||||||
if not self.util.is_exist(pardus_gnome_path):
|
if not self.util.is_exist(pardus_gnome_path):
|
||||||
self.logger.info("Pardus-gnome.conf does not exist.")
|
self.logger.info("Gnome conf doesn't exist")
|
||||||
|
|
||||||
else:
|
else:
|
||||||
self.logger.info("Pardus-gnome.conf exists.")
|
reading_file = open(pardus_gnome_path, "r")
|
||||||
file_gmd3 = open(pardus_gnome_path,'r')
|
|
||||||
file_data = file_gmd3.read()
|
|
||||||
if "# disable-user-list=true" in file_data:
|
|
||||||
self.logger.info("gdm.conf has been found.")
|
|
||||||
file_data = file_data.replace("# disable-user-list=true", "disable-user-list=true")
|
|
||||||
file_gdm3.close()
|
|
||||||
file_gdm3 = open(pardus_gnome_path, 'w')
|
|
||||||
file_gdm3.write(file_data)
|
|
||||||
file_gdm3.close()
|
|
||||||
|
|
||||||
self.logger.info("gdm.conf has been configured.")
|
new_file_content = ""
|
||||||
else:
|
for line in reading_file:
|
||||||
self.logger.error("disable local user can not found")
|
stripped_line = line.strip()
|
||||||
|
new_line = stripped_line.replace("# disable-user-list=true", "disable-user-list=true")
|
||||||
|
new_file_content += new_line + "\n"
|
||||||
|
reading_file.close()
|
||||||
|
|
||||||
|
writing_file = open(pardus_gnome_path, "w")
|
||||||
|
writing_file.write(new_file_content)
|
||||||
|
writing_file.close()
|
||||||
|
self.logger.info("gdm.conf has been configured.")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue