View | Details | Raw Unified | Return to bug 230741
Collapse All | Expand All

(-)b/sysutils/py-google-compute-engine/files/instance_configs.cfg.distro.sample (+4 lines)
Lines 6-8 groupadd_cmd = pw groupadd {group} Link Here
6
6
7
[MetadataScripts]
7
[MetadataScripts]
8
default_shell = /bin/sh
8
default_shell = /bin/sh
9
10
[InstanceSetup]
11
set_multiqueue = false
12
optimize_local_ssd = false
(-)a/sysutils/py-google-compute-engine/files/patch-google__compute__engine_instance__setup_instance__config.py (-16 lines)
Removed Link Here
1
--- google_compute_engine/instance_setup/instance_config.py.orig	2018-06-11 23:51:09 UTC
2
+++ google_compute_engine/instance_setup/instance_config.py
3
@@ -74,11 +74,11 @@ class InstanceConfig(config_manager.Conf
4
       },
5
       'InstanceSetup': {
6
           'host_key_types': 'ecdsa,ed25519,rsa',
7
-          'optimize_local_ssd': 'true',
8
+          'optimize_local_ssd': 'false',
9
           'network_enabled': 'true',
10
           'set_boto_config': 'true',
11
           'set_host_keys': 'true',
12
-          'set_multiqueue': 'true',
13
+          'set_multiqueue': 'false',
14
       },
15
       'IpForwarding': {
16
           'ethernet_proto_id': '66',
(-)a/sysutils/py-google-compute-engine/files/patch-setup.py (-11 lines)
Removed Link Here
1
--- setup.py.orig	2018-06-11 23:51:09 UTC
2
+++ setup.py
3
@@ -34,7 +34,6 @@ setuptools.setup(
4
     long_description='Google Compute Engine guest environment.',
5
     name='google-compute-engine',
6
     packages=setuptools.find_packages(),
7
-    scripts=glob.glob('scripts/*'),
8
     url='https://github.com/GoogleCloudPlatform/compute-image-packages',
9
     version='2.8.3',
10
     # Entry points create scripts in /usr/bin that call a function.
11
- 

Return to bug 230741