2013-10-26 21:28:38 +00:00
|
|
|
#!/bin/sh -e
|
2008-07-24 07:29:50 +00:00
|
|
|
|
2013-10-26 21:28:38 +00:00
|
|
|
file="$1"
|
2019-04-12 16:18:39 +00:00
|
|
|
host=staticweb.ungleich.ch
|
|
|
|
dir=/home/services/www/nico/www.nico.schottelius.org/www/temp
|
2019-04-12 16:46:31 +00:00
|
|
|
url="https://www.nico.schottelius.org/temp"
|
2008-07-24 07:29:50 +00:00
|
|
|
|
|
|
|
[ -z "$file" ] && exit 1
|
|
|
|
|
|
|
|
bfile="$(basename "$file")"
|
|
|
|
|
2019-04-12 16:18:39 +00:00
|
|
|
scp "$file" "${host}:${dir}"
|
|
|
|
ssh "$host" "chmod a+r \"$dir/$bfile\""
|
2008-07-24 07:29:50 +00:00
|
|
|
|
|
|
|
echo "Pre-released ${url}/${bfile}"
|