diff options
author | dzhioev@chromium.org <dzhioev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-22 00:38:14 +0000 |
---|---|---|
committer | dzhioev@chromium.org <dzhioev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-22 00:38:14 +0000 |
commit | 59c61c819c75495160ea5cf1b84166da827fc10b (patch) | |
tree | 870053814cbfc10a3a732cee920a7283536732c0 /chrome/app/policy | |
parent | b5b9ff44ca3527caf44038a8689a24ec434fd666 (diff) | |
download | chromium_src-59c61c819c75495160ea5cf1b84166da827fc10b.zip chromium_src-59c61c819c75495160ea5cf1b84166da827fc10b.tar.gz chromium_src-59c61c819c75495160ea5cf1b84166da827fc10b.tar.bz2 |
Added policy for disabling locally managed users.
By default LMU disabled for managed devices.
Also added support of new policy in ChromeOS part.
BUG=229298
Review URL: https://chromiumcodereview.appspot.com/17546004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207978 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/policy')
-rw-r--r-- | chrome/app/policy/policy_templates.json | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/chrome/app/policy/policy_templates.json b/chrome/app/policy/policy_templates.json index 7fca71b..52680ca 100644 --- a/chrome/app/policy/policy_templates.json +++ b/chrome/app/policy/policy_templates.json @@ -112,7 +112,7 @@ # persistent IDs for all fields (but not for groups!) are needed. These are # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, # because doing so would break the deployed wire format! -# For your editing convenience: highest ID currently used: 218 +# For your editing convenience: highest ID currently used: 219 # # Placeholders: # The following placeholder strings are automatically substituted: @@ -4982,6 +4982,24 @@ This policy is for internal use by Chrome itself.''', }, + { + 'name': 'SupervisedUsersEnabled', + 'type': 'main', + 'schema': { 'type': 'boolean' }, + 'supported_on': ['chrome_os:29-'], + 'device_only': True, + 'features': { + 'dynamic_refresh': False, + }, + 'example_value': True, + 'id': 219, + 'caption': '''Enable supervised users.''', + 'desc': '''If set to true, it is possible to create and log in as a supervised user. + + If set to false or not configured, supervised users creation and login will be disabled. All existing supervised users will be hidden. + + NOTE: The default behavior for consumer and enterprise devices differs: on consumer devices supervised users are enabled by default, but on enterprice devices they aren't.''' + }, ], }, ], |