From 6c6239e26930065543dccc270bbcba6f4d58458c Mon Sep 17 00:00:00 2001 From: ahoemann Date: Thu, 17 Apr 2025 22:21:32 +0200 Subject: [PATCH] Update setup-alpine.sh --- setup-alpine.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup-alpine.sh b/setup-alpine.sh index dac7838..44ccfa5 100644 --- a/setup-alpine.sh +++ b/setup-alpine.sh @@ -1,6 +1,5 @@ #!/usr/bin/env sh wget "https://dl-cdn.alpinelinux.org/alpine/v3.21/releases/x86_64/alpine-virt-3.21.3-x86_64.iso" -O alpine.iso -if [ -f alpine.iso ]; then if [ -f /dev/sda ]; then dd if=alpine.iso of=/dev/sda && reboot elif [ -f /dev/vda ]; then @@ -8,4 +7,3 @@ if [ -f alpine.iso ]; then else exit 1 fi -fi