Remove unneeded call to bash
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
3679dbe8b8
commit
e5bd121671
8
start.sh
8
start.sh
|
@ -3,13 +3,11 @@
|
||||||
if ! [ -f "/root/.ssh/id_rsa.pub" ]; then
|
if ! [ -f "/root/.ssh/id_rsa.pub" ]; then
|
||||||
echo "No key found, creating a new one!"
|
echo "No key found, creating a new one!"
|
||||||
ssh-keygen -t rsa -f ~/.ssh/id_rsa -q -P ""
|
ssh-keygen -t rsa -f ~/.ssh/id_rsa -q -P ""
|
||||||
chmod 700 /~/.ssh/id_rsa
|
chmod 700 ~/.ssh/id_rsa
|
||||||
chmod 700 /~/.ssh/id_rsa.pub
|
chmod 700 ~/.ssh/id_rsa.pub
|
||||||
echo " IdentityFile ~/.ssh/id_rsa" >> /etc/ssh/ssh_config
|
echo " IdentityFile ~/.ssh/id_rsa" >> /etc/ssh/ssh_config
|
||||||
echo "Your new public key for this instance:"
|
echo "Your new public key for this instance:"
|
||||||
cat ~/.ssh/id_rsa.pub
|
cat ~/.ssh/id_rsa.pub
|
||||||
fi
|
fi
|
||||||
|
|
||||||
npm run start
|
npm run start
|
||||||
|
|
||||||
/bin/sh
|
|
Loading…
Reference in a new issue