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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hackerrun",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "CLI tool to create and manage VMs using Ubicloud API",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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