Only list ipfs users who have a tox id

This commit is contained in:
Bob Mottram 2016-09-07 22:30:12 +01:00
parent f09bb35ecf
commit 614906ad05
No known key found for this signature in database
GPG Key ID: 0452CC7CEA982E38
2 changed files with 5 additions and 2 deletions

View File

@ -799,6 +799,7 @@ function setup_ipfs {
fi
# make a public directory
TOX_ID='none'
if [ -d /home/$MY_USERNAME/Desktop ]; then
if [ ! -d /home/$MY_USERNAME/Public ]; then
mkdir /home/$MY_USERNAME/Public
@ -811,9 +812,9 @@ function setup_ipfs {
exit 368225
fi
fi
TOX_ID=$(su -c 'toxid' - $MY_USERNAME)
fi
TOX_ID=$(su -c 'toxid' - $MY_USERNAME)
create_avahi_mesh_service "ipfs" "ipfs" "udp" "$IPFS_PORT" "${IPFS_PEER_ID}:${TOX_ID}"
echo "IPFS installed with ID ${IPFS_PEER_ID}" >> $INSTALL_LOG

View File

@ -132,7 +132,9 @@ function ipfs_bootstrap {
ipfs_tox_id=$(echo "$ipfs_txt" | awk -F ':' '{print $2}')
$IPFS_COMMAND bootstrap add /ip4/${address}/tcp/${IPFS_PORT}/ipfs/${ipfs_peer_id}
if [ -d /home/$MY_USERNAME/Desktop ]; then
echo "$ipfs_tox_id:$ipfs_peer_id" >> ${IPFS_USERS_FILE}.new
if [[ $ipfs_tox_id != 'none' ]]; then
echo "$ipfs_tox_id:$ipfs_peer_id" >> ${IPFS_USERS_FILE}.new
fi
fi
state=0
fi