This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Add this line into /boot/config/go where username is the user you want to setup, probably root | |
#/boot/config/ssh/setup_ssh_client.sh "username" | |
if [[ "$1" == "" ]]; then | |
echo "Invalid User!" | |
exit 1 | |
fi |