diff options
-rw-r--r-- | share/libmsec.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/libmsec.py b/share/libmsec.py index 7a2d79b..1c29e7e 100644 --- a/share/libmsec.py +++ b/share/libmsec.py @@ -229,11 +229,11 @@ def allow_user_list(arg): if arg: _interactive and log(_('Allowing the listing of users in display managers')) kdmrc.exists() and kdmrc.set_shell_variable('ShowUsers', 'All') - gdmconf.exists() and gdmconf.set_shell_variable('Browser', '1') + gdmconf.exists() and gdmconf.set_shell_variable('Browser', 'true') else: _interactive and log(_('Disabling the listing of users in display managers')) kdmrc.exists() and kdmrc.set_shell_variable('ShowUsers', 'None') - gdmconf.exists() and gdmconf.set_shell_variable('Browser', '0') + gdmconf.exists() and gdmconf.set_shell_variable('Browser', 'false') def allow_root_login(arg): ''' Allow/Forbid direct root login.''' |