15 lines
362 B
Bash
Executable File
15 lines
362 B
Bash
Executable File
#!/bin/bash
|
|
# Run starworld with authentication
|
|
|
|
echo "Overte Domain Authentication"
|
|
echo "=============================="
|
|
echo ""
|
|
echo -n "Username: "
|
|
read username
|
|
echo "(Password no longer sent; Overte uses keypair signatures. Username is optional for now.)"
|
|
echo ""
|
|
export OVERTE_USERNAME="$username"
|
|
|
|
echo "Connecting to Overte domain..."
|
|
./build/starworld
|