We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ae295b commit cdc1a8cCopy full SHA for cdc1a8c
1 file changed
buildmaster/backend/assets/bin/builderctl
@@ -133,6 +133,11 @@ def cluster_provision(arguments):
133
with sftp.open(os.path.join(debug_server, "settings"), "wb") as output_file:
134
output_file.write("default_action report".encode())
135
136
+ ### Ensure system uses network time... create an empty file which the update-time
137
+ ### launchd job checks for.
138
+ with sftp.open(os.path.join(settings_dir, "networktime"), "wb") as output_file:
139
+ output_file.write("".encode())
140
+
141
### Tune kernel settings
142
kernel_settings = os.path.join(settings_dir, "kernel", "drivers")
143
0 commit comments