13 lines
206 B
Bash
Executable File
13 lines
206 B
Bash
Executable File
#!/bin/bash
|
|
|
|
FSPATH=/srv/www/yavscpre
|
|
|
|
ssh root@localhost rm -rf $FSPATH/approot/src
|
|
|
|
(
|
|
set -e
|
|
cd bin/output/
|
|
rsync -ravu wwwroot approot root@localhost:$FSPATH
|
|
ssh root@localhost service kestrel restart
|
|
)
|