Show tahoe-lafs introducer on about screen
This commit is contained in:
parent
d546d82db9
commit
4b6a159d50
|
@ -538,6 +538,19 @@ function show_ssh_public_key {
|
||||||
echo ''
|
echo ''
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function show_tahoelafs_introducer {
|
||||||
|
INTRODUCER_FILENAME=cat /home/tahoelafs/data/private/introducer.furl
|
||||||
|
if [ ! -f $INTRODUCER_FILENAME ]; then
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
echo $'Tahoe-LAFS introducer'
|
||||||
|
echo '====================='
|
||||||
|
echo ''
|
||||||
|
echo "$(cat $INTRODUCER_FILENAME)"
|
||||||
|
echo ''
|
||||||
|
echo ''
|
||||||
|
}
|
||||||
|
|
||||||
function show_about {
|
function show_about {
|
||||||
clear
|
clear
|
||||||
echo ''
|
echo ''
|
||||||
|
@ -550,6 +563,7 @@ function show_about {
|
||||||
show_tor_bridges
|
show_tor_bridges
|
||||||
show_ssh_public_key
|
show_ssh_public_key
|
||||||
show_domains
|
show_domains
|
||||||
|
show_tahoelafs_introducer
|
||||||
show_mirrors_password
|
show_mirrors_password
|
||||||
show_tahoe_introducer
|
show_tahoe_introducer
|
||||||
show_users
|
show_users
|
||||||
|
|
Loading…
Reference in New Issue