diff options
author | Frederic Lepied <flepied@mandriva.com> | 2002-08-11 18:43:29 +0000 |
---|---|---|
committer | Frederic Lepied <flepied@mandriva.com> | 2002-08-11 18:43:29 +0000 |
commit | 53e69c562fe8fda065539a41f371239981512bfc (patch) | |
tree | 63b9d35e4f19b38dd12e0abff68d9bc31c634f77 | |
parent | 108aa3e3da06cc211254f85722607d7d969d88b2 (diff) | |
download | msec-53e69c562fe8fda065539a41f371239981512bfc.tar msec-53e69c562fe8fda065539a41f371239981512bfc.tar.gz msec-53e69c562fe8fda065539a41f371239981512bfc.tar.bz2 msec-53e69c562fe8fda065539a41f371239981512bfc.tar.xz msec-53e69c562fe8fda065539a41f371239981512bfc.zip |
corrected without_password
-rw-r--r-- | share/libmsec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/libmsec.py b/share/libmsec.py index 7906b78..b98b460 100644 --- a/share/libmsec.py +++ b/share/libmsec.py @@ -87,7 +87,7 @@ without_password=2 ALL_LOCAL_NONE_TRANS = {ALL : 'ALL', NONE: 'NONE', LOCAL : 'LOCAL'} YES_NO_TRANS = {yes : 'yes', no : 'no'} -ALLOW_ROOT_LOGIN_TRANS = {no : 'no', yes : 'yes', without_password : 'without-password'} +ALLOW_ROOT_LOGIN_TRANS = {no : 'no', yes : 'yes', without_password : 'without_password'} # config files => actions |