mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-17 05:32:22 -04:00
13 lines
288 B
Bash
Executable file
13 lines
288 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
TO_DELETE=$(grep -lr "\"uid\": \"${1}\"" . || true)
|
|
if [ -z "$TO_DELETE" ]
|
|
then
|
|
printf "Unable to find '${1}'\n"
|
|
else
|
|
printf "Statefile found. You should run:\n\n"
|
|
printf "cd %s\n" $TO_DELETE
|
|
printf "constellation terminate\n\n"
|
|
fi
|