This commit is contained in:
qo-op 2020-04-30 01:21:38 +02:00
parent 63a99cbf80
commit 99b7fd38de
1 changed files with 5 additions and 4 deletions

View File

@ -6,8 +6,8 @@ scuttlebutt() {
BASE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
if [[ ! $where_is_ssb_installed ]]; then
# BRUTAL WAY... TODO soften
killall node
# KILL the BRUTAL WAY...
kill -9 $(ps auxf --sort=+utime | grep -w ssb-server| grep -v -E 'color=auto|grep' | tail -n 1 | awk '{print $2}')
# Install dependencies
sudo apt-get install -y socat python3-dev libtool python3-setuptools autoconf automake
@ -65,7 +65,7 @@ scuttlebutt() {
if [[ $extension == $nodename ]]; then
nodename=$nodename.home
nodename=$nodename.local
# LOCAL
cat > ~/.ssb/config <<EOF
{
@ -169,8 +169,9 @@ __)|_| \ \/ |_| \ || || |_ ... SCUTTLEBUTT ... OK?
echo "YOU CAN CHOOSE ssb-daemon INSTEAD..."
echo "ADD TO YOUR '/etc/rc.local' !!! "
sleep $((1 + RANDOM % 5))
echo "LAUNCHING OASIS NODE MANAGER http://$nodename:3000"
sbotc -t async manifest > ~/.ssb/manifest.json
sbotc -t async manifest > ~/.ssb/manifest.json
oasis --allow-host $nodename --host $nodename &
echo "TODO: Protect behind nginx redirect !!!"