3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 22:19:31 +01:00

Update run.sh to use newly renamed ergo binaries

This commit is contained in:
Karsten Højgaard 2021-05-28 23:15:30 +02:00 committed by GitHub
parent cf33122f15
commit 76fa365a7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ if [ ! -f "/ircd/ircd.yaml" ]; then
# change default oper passwd
OPERPASS=$(< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c20)
echo "Oper username:password is admin:$OPERPASS"
ENCRYPTEDPASS=$(echo "$OPERPASS" | /ircd-bin/oragono genpasswd)
ENCRYPTEDPASS=$(echo "$OPERPASS" | /ircd-bin/ergo genpasswd)
ORIGINALPASS='\$2a\$04\$0123456789abcdef0123456789abcdef0123456789abcdef01234'
awk "{gsub(/password: \\\"$ORIGINALPASS\\\"/,\"password: \\\"$ENCRYPTEDPASS\\\"\")}1" /tmp/ircd.yaml > /tmp/ircd2.yaml
@ -23,7 +23,7 @@ if [ ! -f "/ircd/ircd.yaml" ]; then
fi
# make self-signed certs if they don't already exist
/ircd-bin/oragono mkcerts
/ircd-bin/ergo mkcerts
# run!
exec /ircd-bin/oragono run
exec /ircd-bin/ergo run