diff options
author | Eugeni Dodonov <eugeni@mandriva.org> | 2010-02-18 18:20:05 +0000 |
---|---|---|
committer | Eugeni Dodonov <eugeni@mandriva.org> | 2010-02-18 18:20:05 +0000 |
commit | 913df8d6856b4abcebaee4185148d6b3e757daf8 (patch) | |
tree | c85e4ae856ad2111da45d1a3b9bac4edab6e0b61 | |
parent | 94928f9396a9067c20bc6a8c50d4cecb0d4687fa (diff) | |
download | msec-913df8d6856b4abcebaee4185148d6b3e757daf8.tar msec-913df8d6856b4abcebaee4185148d6b3e757daf8.tar.gz msec-913df8d6856b4abcebaee4185148d6b3e757daf8.tar.bz2 msec-913df8d6856b4abcebaee4185148d6b3e757daf8.tar.xz msec-913df8d6856b4abcebaee4185148d6b3e757daf8.zip |
added support for netbook level
-rwxr-xr-x | src/msec/msecgui.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/msec/msecgui.py b/src/msec/msecgui.py index bbeab87..ebb25ba 100755 --- a/src/msec/msecgui.py +++ b/src/msec/msecgui.py @@ -55,6 +55,7 @@ to activate it, choose the appropriate security level: """) # level descriptions level_descriptions = { "standard": _("""This profile configures a reasonably safe set of security features. It activates several non-intrusive periodic system checks. This is the suggested level for Desktop."""), + "netbook": _("""This profile is focused on netbook or low-end devices, which are only accessed by local users and run on batteries."""), "secure": _("""This profile is configured to provide maximum security, even at the cost of limiting the remote access to the system. It also runs a wider set of periodic checks. This level is suggested for Servers and security-concerned systems . """), @@ -64,7 +65,7 @@ level_descriptions = { } # level order. Levels will appear in this order, the unspecified levels will appear last -level_order = ["standard", "fileserver", "webserver", "secure"] +level_order = ["standard", "netbook", "fileserver", "webserver", "secure"] # description for level without description DEFAULT_LEVEL_DESCRIPTION="\n".join(wrap(_("""Custom security level."""), 80)) |