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}"
|
|
|
|
|
|
2024-10-12 15:30:18 +00:00
|
|
|
ssh badgey@$bot sudo /usr/bin/systemctl stop $bot
|
|
|
|
|
rsync -avP badgey badgey@$bot:/srv/$bot/$bot
|
|
|
|
|
rsync -avP config badgey@$bot:/srv/$bot/
|
|
|
|
|
rsync -avP txt badgey@$bot:/srv/$bot/
|
2024-10-12 15:42:36 +00:00
|
|
|
ssh badgey@$bot chmod a+x /srv/$bot/$bot
|
2024-10-12 15:30:18 +00:00
|
|
|
ssh badgey@$bot sudo /usr/bin/systemctl start $bot
|