2023-08-30 15:57:38 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2024-10-12 13:33:06 +00:00
|
|
|
bot=$(echo "$1" | tr '[:upper:]' '[:lower:]')
|
|
|
|
|
|
|
|
|
|
echo "Running deploy for bot ${bot}"
|
|
|
|
|
|
|
|
|
|
ssh $bot@$bot sudo /usr/bin/systemctl stop $bot
|
|
|
|
|
rsync -avP badgey $bot@$bot:/srv/$bot/
|
|
|
|
|
rsync -avP config $bot@$bot:/srv/$bot/
|
|
|
|
|
rsync -avP txt $bot@$bot:/srv/$bot/
|
|
|
|
|
ssh $bot@$bot sudo /usr/bin/systemctl start $bot
|