mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
4 lines
204 B
Bash
Executable file
4 lines
204 B
Bash
Executable file
#!/bin/bash
|
|
DIRECTORY=`dirname $0`
|
|
cd $DIRECTORY/..
|
|
rsync -avzhe ssh --delete --exclude=.* ./ deploy@ansible.banditlair.com:/home/deploy/ansible && ssh -t deploy@ansible.banditlair.com "cd ansible && $1"
|