9 lines
280 B
Bash
Executable File
9 lines
280 B
Bash
Executable File
#!/bin/bash
|
|
|
|
bot=$(echo "$1" | tr '[:upper:]' '[:lower:]')
|
|
|
|
ssh badgey@$bot sudo /usr/bin/systemctl stop $bot
|
|
rsync -avP badgey badgey@$bot:/srv/$bot/
|
|
rsync -avP config badgey@$bot:/srv/$bot/
|
|
rsync -avP txt badgey@$bot:/srv/$bot/
|
|
ssh badgey@$bot sudo /usr/bin/systemctl start $bot |