fix: ceremony.sh script keyfork command and pub certs path
This commit is contained in:
parent
25516fcd7f
commit
9f8297bd0e
|
@ -16,9 +16,7 @@ command with a desired threshold:
|
||||||
|
|
||||||
script_dir="$(dirname "$(realpath "$0")")"
|
script_dir="$(dirname "$(realpath "$0")")"
|
||||||
|
|
||||||
read -p "Provide the path to PGP certificates which will be used for the ceremony: " relative_path
|
read -p "Provide the absoute path to PGP certificates which will be used for the ceremony: " directory_path
|
||||||
|
|
||||||
directory_path="$script_dir/$relative_path"
|
|
||||||
|
|
||||||
if [ ! -d "$directory_path" ]; then
|
if [ ! -d "$directory_path" ]; then
|
||||||
echo "Directory does not exist. Please enter a valid directory path."
|
echo "Directory does not exist. Please enter a valid directory path."
|
||||||
|
@ -39,7 +37,7 @@ command with a desired threshold:
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
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
|
* The `airgap.iso` which is to be used during the ceremony
|
||||||
|
|
Loading…
Reference in New Issue