hackerrun 0.1.8 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/lib/cluster.ts +0 -6
package/package.json
CHANGED
package/src/lib/cluster.ts
CHANGED
|
@@ -366,12 +366,6 @@ export class ClusterManager {
|
|
|
366
366
|
const setupScript = `#!/bin/bash
|
|
367
367
|
set -e
|
|
368
368
|
|
|
369
|
-
# Install jq if not present (needed to merge Docker config)
|
|
370
|
-
if ! command -v jq &> /dev/null; then
|
|
371
|
-
apt-get update -qq
|
|
372
|
-
apt-get install -y -qq jq
|
|
373
|
-
fi
|
|
374
|
-
|
|
375
369
|
# Step 1: Add IPv6 support to Docker daemon config
|
|
376
370
|
DAEMON_JSON='/etc/docker/daemon.json'
|
|
377
371
|
if [ -f "$DAEMON_JSON" ]; then
|