docs: add wizard telegram bot cutover plan

This commit is contained in:
Alexander Whitestone
2026-03-29 13:28:00 -04:00
committed by Alexander Whitestone
parent bc35d5fa94
commit 11cb53932b
2 changed files with 161 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
#!/usr/bin/env bash
set -euo pipefail
if [ "$#" -ne 2 ]; then
echo "usage: $0 <ezra_bot_token> <bezalel_bot_token>" >&2
exit 1
fi
EZRA_TOKEN="$1"
BEZALEL_TOKEN="$2"
GROUP_ID='-1003664764329'
GROUP_NAME='Timmy Time'
ALLOWED='7635059073'
ssh root@143.198.27.163 "python3 - <<'PY'
from pathlib import Path
p = Path('/root/wizards/ezra/home/.env')
text = p.read_text() if p.exists() else ''
lines = [line for line in text.splitlines() if not line.startswith('TELEGRAM_')]
lines += [
'TELEGRAM_BOT_TOKEN=${EZRA_TOKEN}',
'TELEGRAM_HOME_CHANNEL=${GROUP_ID}',
'TELEGRAM_HOME_CHANNEL_NAME=${GROUP_NAME}',
'TELEGRAM_ALLOWED_USERS=${ALLOWED}',
]
p.write_text('\n'.join(lines) + '\n')
PY
systemctl restart hermes-ezra.service openclaw-ezra.service"
ssh root@67.205.155.108 "python3 - <<'PY'
from pathlib import Path
p = Path('/root/wizards/bezalel/home/.env')
text = p.read_text() if p.exists() else ''
lines = [line for line in text.splitlines() if not line.startswith('TELEGRAM_')]
lines += [
'TELEGRAM_BOT_TOKEN=${BEZALEL_TOKEN}',
'TELEGRAM_HOME_CHANNEL=${GROUP_ID}',
'TELEGRAM_HOME_CHANNEL_NAME=${GROUP_NAME}',
'TELEGRAM_ALLOWED_USERS=${ALLOWED}',
]
p.write_text('\n'.join(lines) + '\n')
PY
systemctl restart hermes-bezalel.service"
echo 'Wizard Telegram bot tokens installed and services restarted.'