Question
cURL in user_data
Hello guys,
I’m currently trying to use this value for user_data:
#cloud-config
runcmd:
- curl https://mysupercooldomain.tld/do.sh | sh
The content of do.sh is:
#!/bin/bash
echo "doing" > status
dpkg --add-architecture i386
apt-get -y update
apt-get -y install mailutils postfix curl wget file bzip2 gzip unzip bsdmainutils python util-linux ca-certificates tmux lib32gcc1 libstdc++6 libstdc++6:i386
adduser --disabled-password --gecos "Game Server" gameserver
su - gameserver
wget https://mysupercooldomain.tld/gameserver
chmod +x gameserver
./gameserver install
After creating a Droplet, the Droplet does not contain the data it should contain.
Something wrong?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×