diff options
Diffstat (limited to 'templates')
-rwxr-xr-x | templates/alpine.run | 12 | ||||
-rwxr-xr-x | templates/turris.run | 10 |
2 files changed, 12 insertions, 10 deletions
diff --git a/templates/alpine.run b/templates/alpine.run index 7f35cb7..a65fb84 100755 --- a/templates/alpine.run +++ b/templates/alpine.run @@ -68,10 +68,10 @@ uroot cp "$FILES/alpine/abuild.conf" "$ROOT/etc/abuild.conf" uchroot build 'buildrepo --purge --keep-going personal' echo_stage "Deploy" -sftp -b - upload:/var/www/repo <<EOF - !mkdir -p alpine - !rm -rf "alpine/$ARCH" - put -R "$WORKSPACE/packages/personal/$ARCH" "alpine/$ARCH" - put "$FILES"/alpine/setup.sh alpine/ - put "$FILES"/alpine/setup.sh.gpg alpine/ +ssh upload rm -rf "deploy-alpine" +sftp -r "$WORKSPACE/packages/personal/$ARCH" upload:"deploy-alpine-$ARCH" +ssh upload /bin/sh -e "$ARCH" <<"EOF" + rm -rf "/var/www/repo/alpine/$1" + mv "deploy-alpine-$1" "/var/www/repo/alpine/$1" EOF +sftp "$FILES"/alpine/setup.sh{,.gpg} upload:/var/www/repo/alpine/ diff --git a/templates/turris.run b/templates/turris.run index 46341ea..dfeaf06 100755 --- a/templates/turris.run +++ b/templates/turris.run @@ -68,8 +68,10 @@ echo_stage "Generate index and sign" $make package/index BUILD_KEY=~/openwrt-repo.sec echo_stage "Deploy" -sftp -b - upload:/var/www/repo <<EOF - !mkdir -p "turris/$ANIMAL" - !rm -rf "turris/$ANIMAL/$BOARD" - put -R "bin/packages/$ARCH/personal" "turris/$ANIMAL/$BOARD" +ssh upload rm -rf "deploy-turris-$ANIMAL-$BOARD" +scp -r "bin/packages/$ARCH/personal" upload:"deploy-turris-$ANIMAL-$BOARD" +ssh upload /bin/sh -e "$ANIMAL" "$BOARD" <<"EOF" + mkdir -p "/var/www/repo/turris/$1" + rm -rf "/var/www/repo/turris/$1/$2" + mv deploy-turris-$1-$2 "/var/www/repo/turris/$1/$2" EOF |