furl format
This commit is contained in:
parent
a290548c1a
commit
7042fa0015
|
@ -490,8 +490,16 @@ function create_tahoelafs_client {
|
|||
sed -i 's|tub.location =.*|tub.location = disabled|g' $client_dir/tahoe.cfg
|
||||
}
|
||||
|
||||
function tahoelafs_parse_furl {
|
||||
furl="$1"
|
||||
furl_1=$(cat "$furl" | awk -F ' ' '{print $1}')
|
||||
furl_2=$(cat "$furl" | awk -F ':' '{print $5}')
|
||||
echo "${furl_1}:${furl_2}"
|
||||
}
|
||||
|
||||
function get_tahoelafs_furl {
|
||||
echo "$(cat /home/tahoelafs/storage/private/storage.furl)"
|
||||
furl="$(cat /home/tahoelafs/storage/private/storage.furl)"
|
||||
echo "$(tahoelafs_parse_furl \"$furl\")"
|
||||
}
|
||||
|
||||
function get_tahoelafs_nick {
|
||||
|
|
Loading…
Reference in New Issue