From 9f8297bd0ec3a01ae0fd62f4fa74143b253b8b12 Mon Sep 17 00:00:00 2001 From: Anton Livaja Date: Sun, 4 Aug 2024 19:28:16 -0400 Subject: [PATCH] fix: ceremony.sh script keyfork command and pub certs path --- quorum-key-management/src/one-time-repository-setup.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/quorum-key-management/src/one-time-repository-setup.md b/quorum-key-management/src/one-time-repository-setup.md index e078d18..f160aee 100644 --- a/quorum-key-management/src/one-time-repository-setup.md +++ b/quorum-key-management/src/one-time-repository-setup.md @@ -16,13 +16,11 @@ command with a desired threshold: script_dir="$(dirname "$(realpath "$0")")" - read -p "Provide the path to PGP certificates which will be used for the ceremony: " relative_path - - directory_path="$script_dir/$relative_path" + read -p "Provide the absoute path to PGP certificates which will be used for the ceremony: " directory_path if [ ! -d "$directory_path" ]; then - echo "Directory does not exist. Please enter a valid directory path." - exit 1 + echo "Directory does not exist. Please enter a valid directory path." + exit 1 fi for file in "$directory_path"/*; do @@ -39,7 +37,7 @@ command with a desired threshold: exit 1 fi - keyfork bottoms-up --threshold 2 --output-cert /dev/null --output-shardfile /dev/null --user-id "Distrust Key Ceremony" public-certificates/ + keyfork wizard bottoms-up --threshold 2 --output-cert /dev/null --output-shardfile /dev/null --user-id "Distrust Key Ceremony" public-certificates/ ``` * The `airgap.iso` which is to be used during the ceremony