PacketShare.io #143
Closed
andref0rte
started this conversation in
General
Replies: 2 comments
-
Hello, Thank you |
Beta Was this translation helpful? Give feedback.
0 replies
-
PacketShare has been added to main branch now. https://github.com/engageub/InternetIncome Thank you |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to use packetsahre.io and I noticed that there is no configuration in its scripts.
I added the following to the files:
properties.conf
Set your HoneyGain email and password
PACKETSHARE_EMAIL=email
PACKETSHARE_PASSWORD=password
internetincome.sh
Starting PacketShare container
if [[ $PACKETSHARE_EMAIL && $PACKETSHARE_PASSWORD ]]; then
echo -e "${GREEN}Starting PacketShare container..${NOCOLOUR}"
if [ "$container_pulled" = false ]; then
sudo docker pull packetshare/packetshare:latest
fi
if CONTAINER_ID=$(sudo docker run -d --name packetshare$UNIQUE_ID$i --restart=always $LOGS_PARAM $NETWORK_TUN packetshare/packetshare:latest -email=$PACKETSHARE_EMAIL -password=$PACKETSHARE_PASSWORD -accept-tos); then
echo "$CONTAINER_ID" | tee -a $containers_file
echo "PacketShare$UNIQUE_ID$i" | tee -a $container_names_file
else
echo -e "${RED}Failed to start container for PacketShare..${NOCOLOUR}"
fi
else
if [ "$container_pulled" = false ]; then
echo -e "${RED}PacketShareEmail or Password is not configured. Ignoring PacketShare..${NOCOLOUR}"
fi
fi
But when i use this comand " sudo bash internetIncome.sh --delete ", it doesn't stop packetshare containers, why?
Beta Was this translation helpful? Give feedback.
All reactions