f529bc9ad8
blacklist.lua: Added username support.
12 lines
291 B
Bash
Executable File
12 lines
291 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Launch tg listening on the default port (change this if you've changed it in
|
|
# config.lua), delete state file after stop, wait two seconds, and restart.
|
|
|
|
while true; do
|
|
tg/bin/telegram-cli -P 4567 -E
|
|
rm ~/.telegram-cli/state
|
|
echo 'tg has stopped. ^C to exit.'
|
|
sleep 5s
|
|
done
|