From 5e8b69d6599cb4d82f2319af44052697c14fed8a Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Wed, 15 Mar 2023 21:06:12 -0500 Subject: [PATCH] factory-reset: Remove errant debug command I added this `seq` command to make it easier to see output from `factory-reset` on the serial console. It's no longer necessary. --- overlay/usr/libexec/factory-reset | 2 -- 1 file changed, 2 deletions(-) diff --git a/overlay/usr/libexec/factory-reset b/overlay/usr/libexec/factory-reset index a88adce..b1a74f7 100755 --- a/overlay/usr/libexec/factory-reset +++ b/overlay/usr/libexec/factory-reset @@ -3,8 +3,6 @@ DATAPART=$(awk '$2=="/var"{print $1}' /etc/fstab) -seq 1 30 - dev=$(findfs "${DATAPART}") if [ -z "${dev}" ]; then printf 'Could not find data partition (%s)\n' "${DATAPART}" >&2