- Mail encryption (when expected) - Introducer listing, adding and removing - Locals listing, adding and removing
12 lines
308 B
Bash
12 lines
308 B
Bash
#!/usr/bin/bash
|
|
|
|
# source some functions
|
|
. common.sh
|
|
|
|
test_header "List locals"
|
|
|
|
GINA_FPR=$(sq key generate --shared-key --without-password --name "Gina" --email "gina@example.com" 2>&1 | grep "Fingerprint:" | cut -d ':' -f 2)
|
|
|
|
cd $HUSK_DIR
|
|
$HUSK_BIN locals list --config config/config.toml | grep $GINA_FPR
|