Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Side by Side Diff: components/policy/resources/policy_templates.json

Issue 2890843002: Policy implementation for encryptfs to ext4 migration strategy (Closed)
Patch Set: Fixed review comments Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 { 1 {
2 # policy_templates.json - Metafile for policy templates 2 # policy_templates.json - Metafile for policy templates
3 # 3 #
4 # The content of this file is evaluated as a Python expression. 4 # The content of this file is evaluated as a Python expression.
5 # 5 #
6 # This file is used as input to generate the following policy templates: 6 # This file is used as input to generate the following policy templates:
7 # ADM, ADMX+ADML, MCX/plist and html documentation. 7 # ADM, ADMX+ADML, MCX/plist and html documentation.
8 # 8 #
9 # Policy templates are user interface definitions or documents about the 9 # Policy templates are user interface definitions or documents about the
10 # policies that can be used to configure Chrome. Each policy is a name-value 10 # policies that can be used to configure Chrome. Each policy is a name-value
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 # templates and documentation. The policy definition list that Chrome sees 136 # templates and documentation. The policy definition list that Chrome sees
137 # will include policies marked with 'future'. If a WIP policy isn't meant to 137 # will include policies marked with 'future'. If a WIP policy isn't meant to
138 # be seen by the policy providers either, the 'supported_on' key should be set 138 # be seen by the policy providers either, the 'supported_on' key should be set
139 # to an empty list. 139 # to an empty list.
140 # 140 #
141 # IDs: 141 # IDs:
142 # Since a Protocol Buffer definition is generated from this file, unique and 142 # Since a Protocol Buffer definition is generated from this file, unique and
143 # persistent IDs for all fields (but not for groups!) are needed. These are 143 # persistent IDs for all fields (but not for groups!) are needed. These are
144 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, 144 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs,
145 # because doing so would break the deployed wire format! 145 # because doing so would break the deployed wire format!
146 # For your editing convenience: highest ID currently used: 370 146 # For your editing convenience: highest ID currently used: 371
147 # And don't forget to also update the EnterprisePolicies enum of 147 # And don't forget to also update the EnterprisePolicies enum of
148 # histograms.xml (run 'python tools/metrics/histograms/update_policies.py'). 148 # histograms.xml (run 'python tools/metrics/histograms/update_policies.py').
149 # 149 #
150 # Placeholders: 150 # Placeholders:
151 # The following placeholder strings are automatically substituted: 151 # The following placeholder strings are automatically substituted:
152 # $1 -> Google Chrome / Chromium 152 # $1 -> Google Chrome / Chromium
153 # $2 -> Google Chrome OS / Chromium OS 153 # $2 -> Google Chrome OS / Chromium OS
154 # $3 -> Google Chrome Frame / Chromium Frame 154 # $3 -> Google Chrome Frame / Chromium Frame
155 # $6 is reserved for doc_writer 155 # $6 is reserved for doc_writer
156 # 156 #
(...skipping 9404 matching lines...) Expand 10 before | Expand all | Expand 10 after
9561 'features': { 9561 'features': {
9562 'dynamic_refresh': True, 9562 'dynamic_refresh': True,
9563 'per_profile': True, 9563 'per_profile': True,
9564 }, 9564 },
9565 'example_value': True, 9565 'example_value': True,
9566 'id': 370, 9566 'id': 370,
9567 'caption': '''Allow queries to a Google time service''', 9567 'caption': '''Allow queries to a Google time service''',
9568 'tags': [], 9568 'tags': [],
9569 'desc': '''Setting this policy to false stops <ph name="PRODUCT_NAME">$1<e x>Google Chrome</ex></ph> from occasionally sending queries to a Google server t o retrieve an accurate timestamp. These queries will be enabled if this policy i s set to True or is not set.''', 9569 'desc': '''Setting this policy to false stops <ph name="PRODUCT_NAME">$1<e x>Google Chrome</ex></ph> from occasionally sending queries to a Google server t o retrieve an accurate timestamp. These queries will be enabled if this policy i s set to True or is not set.''',
9570 }, 9570 },
9571 {
9572 'name': 'DeviceEcryptfsMigrationStrategy',
9573 'type': 'int-enum',
9574 'schema': {
9575 'type': 'integer',
9576 'enum': [ 0, 1 ],
bartfab (slow) 2017/06/12 12:49:04 This does not match the actual policy values (0, 1
igorcov 2017/06/12 16:50:10 Done.
9577 },
9578 'items': [
9579 {
9580 'name': 'DisallowArc',
9581 'value': 0,
9582 'caption': '''Disallow data migration and ARC''',
9583 },
9584 {
9585 'name': 'AllowMigration',
9586 'value': 1,
9587 'caption': '''Allow data migration''',
9588 },
9589 ],
9590 'supported_on': ['chrome_os:60-'],
9591 'device_only': True,
9592 'features': {
9593 'dynamic_refresh': True,
9594 },
9595 'example_value': 1,
9596 'id': 371,
9597 'caption': '''Migration strategy for ecryptfs''',
9598 'tags': [],
9599 'desc': '''Specifies how a device should behave that shipped before <ph na me="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> 60 and may have home direc tories using ecryptfs instead of ext4 encryption.
bartfab (slow) 2017/06/12 12:49:04 Some devices will stay on ecryptfs in M60 as well.
igorcov 2017/06/12 16:50:10 Done.
9600
9601 If you set this policy to 'DisallowArc', Android apps will be disabled for all users on the device (including those that have ext4 encryption already) and no migration from ecryptfs to ext4 encryption will be offered to any users.
9602
9603 If you set this policy to 'AllowMigration', users with ecryptfs home direc tories will be offered to migrate these to ext4 encryption as necessary (current ly when Android N becomes available on the device).
9604
9605 If this policy is left not set, the device will behave as if 'DisallowArc' was chosen.''',
9606 },
9571 ], 9607 ],
9572 'messages': { 9608 'messages': {
9573 # Messages that are not associated to any policies. 9609 # Messages that are not associated to any policies.
9574 'win_supported_winxpsp2': { 9610 'win_supported_winxpsp2': {
9575 'desc': '''A label specifying the oldest possible compatible version of Wi ndows. This text will appear right next to a label containing the text 'Supporte d on:'.''', 9611 'desc': '''A label specifying the oldest possible compatible version of Wi ndows. This text will appear right next to a label containing the text 'Supporte d on:'.''',
9576 'text': '''Microsoft Windows XP SP2 or later''' 9612 'text': '''Microsoft Windows XP SP2 or later'''
9577 }, 9613 },
9578 'mac_chrome_preferences': { 9614 'mac_chrome_preferences': {
9579 'desc': '''A text indicating in Mac OS X Workgroup Manager, that currently the preferences of Chromium are being edited''', 9615 'desc': '''A text indicating in Mac OS X Workgroup Manager, that currently the preferences of Chromium are being edited''',
9580 'text': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> preferenc es''' 9616 'text': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> preferenc es'''
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
9694 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''', 9730 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''',
9695 'text': 'Default Settings (users can override)', 9731 'text': 'Default Settings (users can override)',
9696 }, 9732 },
9697 'doc_complex_policies_on_windows': { 9733 'doc_complex_policies_on_windows': {
9698 'desc': '''Text pointing the user to a help article for complex policies o n Windows''', 9734 'desc': '''Text pointing the user to a help article for complex policies o n Windows''',
9699 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL ICIES_URL">https://www.chromium.org/administrators/complex-policies-on-windows<e x>https://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>' '', 9735 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL ICIES_URL">https://www.chromium.org/administrators/complex-policies-on-windows<e x>https://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>' '',
9700 }, 9736 },
9701 }, 9737 },
9702 'placeholders': [], 9738 'placeholders': [],
9703 } 9739 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698