diff --git a/pym/cl_fill.py b/pym/cl_fill.py index 4775ad0..066d029 100644 --- a/pym/cl_fill.py +++ b/pym/cl_fill.py @@ -715,12 +715,3 @@ class fillVars(varsShare): def get_cl_ca_path(self): """CA path""" return '/var/calculate/ssl/main' - - def get_cl_autologin(self): - """For livecd get first local non-root user""" - if self.Get('os_root_type') == "livecd": - nonRootUsers = filter(lambda x: x != "root", - self.Get('cl_migrate_user')) - if nonRootUsers: - return nonRootUsers[0] - return "" diff --git a/pym/cl_vars.py b/pym/cl_vars.py index fed0ab7..3194ff8 100644 --- a/pym/cl_vars.py +++ b/pym/cl_vars.py @@ -88,16 +88,6 @@ class Data: # template file performed at now cl_pass_file = {'hide':True, 'mode':"w"} - """ - cl_autologin: - Available values: "" or username - If variable empty then system will not perform autologin - If variable value is username then dm perform autologin for this user - - Fill: for livecd this variable get first local user (non-root) - """ - cl_autologin = {'hide':True, 'mode':"w"} - # root partition of filesystem os_root_dev = {'hide':True}