fix: ceremony.sh script keyfork command and pub certs path
This commit is contained in:
parent
25516fcd7f
commit
9f8297bd0e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue